Skip to content

Commit

Permalink
collections.py: fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nschneid committed Apr 24, 2016
1 parent 7219e18 commit 9ff8f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nltk/collections.py
Expand Up @@ -4,7 +4,7 @@
# Author: Steven Bird <stevenbird1@gmail.com>
# URL: <http://nltk.org/>
# For license information, see LICENSE.TXT
from __future__ import print_function
from __future__ import print_function, absolute_import

import locale
import re
Expand All @@ -16,7 +16,7 @@

from itertools import islice, chain, combinations
from pprint import pprint
from collections import defaultdict, deque
from collections import defaultdict, deque, Counter
from sys import version_info

from nltk.internals import slice_bounds, raise_unorderable_types
Expand Down

0 comments on commit 9ff8f3c

Please sign in to comment.