Skip to content

Commit

Permalink
Merge pull request #8 from abadger/fix-py25-or-less-compat
Browse files Browse the repository at this point in the history
Fix py25 or less compat
  • Loading branch information
dsc authored Sep 17, 2024
2 parents a5d4aba + 7aaa6fa commit 4e4c931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bunch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
except ImportError:
from dummy_thread import get_ident as _get_ident

from .python3_compat import *
from bunch.python3_compat import u, iteritems, iterkeys

class Bunch(dict):
""" A dictionary that provides attribute-style access.
Expand Down

0 comments on commit 4e4c931

Please sign in to comment.