Skip to content

Commit

Permalink
pep8: import move at top of file
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Kuncar <jiri.kuncar@cern.ch>
  • Loading branch information
jirikuncar committed Mar 10, 2015
1 parent 18a8b4c commit 855709d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dictdiffer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import sys
import copy

from .version import __version__

if sys.version_info[0] == 3: # pragma: no cover (Python 2/3 specific code)
string_types = str,
else: # pragma: no cover (Python 2/3 specific code)
Expand All @@ -20,8 +22,6 @@
(ADD, REMOVE, CHANGE) = (
'add', 'remove', 'change')

from .version import __version__

__all__ = ('diff', 'patch', 'swap', 'revert', 'dot_lookup', '__version__')


Expand Down

0 comments on commit 855709d

Please sign in to comment.