Index: owners.py |
diff --git a/owners.py b/owners.py |
index 5aabb60077249a33233c3e08702d47e71b23a1e2..5be7ff6d005b815321d31622651a2606b945ab40 100644 |
--- a/owners.py |
+++ b/owners.py |
@@ -18,6 +18,8 @@ BASIC_EMAIL_REGEXP = r'^[\w\-\+\%\.]+\@[\w\-\+\%\.]+$' |
def _assert_is_collection(obj): |
assert not isinstance(obj, basestring) |
+ # Module 'collections' has no 'Iterable' member |
+ # pylint: disable=E1101 |
if hasattr(collections, 'Iterable') and hasattr(collections, 'Sized'): |
assert (isinstance(obj, collections.Iterable) and |
isinstance(obj, collections.Sized)) |