Skip to content

Commit

Permalink
Remove __future__.absolute_import
Browse files Browse the repository at this point in the history
Useless since 7552528.
  • Loading branch information
remram44 committed Sep 11, 2015
1 parent 2c68950 commit 69f50ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions reprounzip/reprounzip/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
``reprounzip.unpackers``.
"""

from __future__ import absolute_import, division, print_function, \
unicode_literals
from __future__ import division, print_function, unicode_literals

import argparse
import locale
Expand Down
3 changes: 1 addition & 2 deletions reprounzip/reprounzip/pack_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
``reprounzip.unpackers``.
"""

from __future__ import absolute_import, division, print_function, \
unicode_literals
from __future__ import division, print_function, unicode_literals

import logging
import pickle
Expand Down

0 comments on commit 69f50ab

Please sign in to comment.