Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_is_iterable():
a = [1, 2, 3]
b = 1
assert check_is_iterable(a) == True
assert check_is_iterable(b) == False
def test_is_iterable():
a = [1, 2, 3]
b = 1
assert check_is_iterable(a) == True
assert check_is_iterable(b) == False