mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-24 00:50:23 +00:00
8 lines
184 B
Python
8 lines
184 B
Python
def is_iterable(x):
|
|
"An implementation independent way of checking for iterables"
|
|
try:
|
|
iter(x)
|
|
except TypeError:
|
|
return False
|
|
else:
|
|
return True
|