change " to """ in itercompat.is_iterable

This commit is contained in:
Prodesire 2017-11-02 22:53:29 +08:00
parent 19d39df798
commit 76f94bb4fe
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
def is_iterable(x):
"An implementation independent way of checking for iterables"
"""An implementation independent way of checking for iterables."""
try:
iter(x)
except TypeError: