mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 13:42:26 +00:00
Fix looping for s
This commit is contained in:
@@ -45,7 +45,7 @@ def s(input_):
|
||||
import sys
|
||||
PY3 = sys.version_info > (3,)
|
||||
|
||||
if hasattr(input_, "__iter__"):
|
||||
if isinstance(input_, list):
|
||||
return [s(ele) for ele in input_]
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user