Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Compat tweak to help coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Gillies committed Aug 25, 2015
1 parent 7550b58 commit 13ed320
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mapbox/compat.py
Expand Up @@ -4,7 +4,4 @@
import sys


if sys.version_info < (3,):
map = itertools.imap
else:
map = map
map = itertools.imap if sys.version_info < (3,) else map

0 comments on commit 13ed320

Please sign in to comment.