Skip to content

Commit

Permalink
fix python 3 incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterKogan committed Mar 8, 2023
1 parent 56aea08 commit ef1093d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bunch/python3_compat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import platform

_IS_PYTHON_3 = (platform.version() >= '3')
_IS_PYTHON_3 = (platform.python_version() >= '3')

identity = lambda x : x

Expand Down

0 comments on commit ef1093d

Please sign in to comment.