We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb844e9 commit d195b4aCopy full SHA for d195b4a
1 file changed
statemachine/utils.py
@@ -6,6 +6,10 @@ def qualname(cls):
6
7
8
def ensure_iterable(obj):
9
+ """
10
+ Returns an iterator if obj is not an instance of string or if it
11
+ encounters type error, otherwise it returns a list.
12
13
if isinstance(obj, str):
14
return [obj]
15
try:
0 commit comments