Skip to content

Commit be5a344

Browse files
jdufresneencukou
authored andcommitted
Remove unnecessary bool() call
Inequalities already return return a boolean. Coercing to a bool again is a noop. python-ldap#135
1 parent 5197e58 commit be5a344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/ldap/ldapobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from ldap import LDAPError
3434

35-
PY2 = bool(sys.version_info[0] <= 2)
35+
PY2 = sys.version_info[0] <= 2
3636
if PY2:
3737
text_type = unicode
3838
else:

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy