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. #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)