Skip to content

Commit

Permalink
Merge branch 'abadger-fix-py3-compat'
Browse files Browse the repository at this point in the history
  • Loading branch information
dsc committed Sep 17, 2024
2 parents 2e8de51 + 62eac3b commit 3138984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bunch/python3_compat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import platform
import sys

_IS_PYTHON_3 = (platform.python_version() >= '3')
_IS_PYTHON_3 = (sys.version_info >= (3,))

identity = lambda x : x

Expand Down

0 comments on commit 3138984

Please sign in to comment.