From 72d5499c5a902c860c5496ee6e604526672e5777 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Thu, 25 Feb 2016 13:46:33 +0100 Subject: pylint: supress false positive no-member errors pylint 1.5 prints many false positive no-member errors which are supressed by this commit. https://fedorahosted.org/freeipa/ticket/5615 Reviewed-By: David Kupka --- ipapython/ipaldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/ipaldap.py') diff --git a/ipapython/ipaldap.py b/ipapython/ipaldap.py index 7522c504b..2965ba4a5 100644 --- a/ipapython/ipaldap.py +++ b/ipapython/ipaldap.py @@ -208,7 +208,7 @@ class LDAPEntry(collections.MutableMapping): Keyword arguments can be used to override values of specific attributes. """ - super(LDAPEntry, self).__init__() + super(LDAPEntry, self).__init__() # pylint: disable=no-member if isinstance(_conn, LDAPEntry): assert _dn is None -- cgit