mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
ruff: Enable naming errors.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
924d530292
commit
1b016bef73
@@ -73,13 +73,13 @@ class MockLDAP(fakeldap.MockLDAP):
|
||||
class LDAPError(ldap.LDAPError):
|
||||
pass
|
||||
|
||||
class INVALID_CREDENTIALS(ldap.INVALID_CREDENTIALS):
|
||||
class INVALID_CREDENTIALS(ldap.INVALID_CREDENTIALS): # noqa: N801
|
||||
pass
|
||||
|
||||
class NO_SUCH_OBJECT(ldap.NO_SUCH_OBJECT):
|
||||
class NO_SUCH_OBJECT(ldap.NO_SUCH_OBJECT): # noqa: N801
|
||||
pass
|
||||
|
||||
class ALREADY_EXISTS(ldap.ALREADY_EXISTS):
|
||||
class ALREADY_EXISTS(ldap.ALREADY_EXISTS): # noqa: N801
|
||||
pass
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user