Skip to content

Commit f882c7c

Browse files
committed
-
1 parent 983305f commit f882c7c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

source_py3/python_toolbox/sequence_tools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import types
88
import itertools
99

10-
from python_toolbox.nifty_collections import Counter
1110
from python_toolbox import math_tools
1211

1312

@@ -22,7 +21,7 @@ def are_equal_regardless_of_order(seq1, seq2):
2221
2322
Currently will fail for items that have problems with comparing.
2423
'''
25-
return Counter(seq1) == Counter(seq2)
24+
return collections.Counter(seq1) == collections.Counter(seq2)
2625

2726

2827
def flatten(iterable):

source_py3/python_toolbox/sleek_reffing/sleek_ref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'''
99

1010
import weakref
11-
import UserDict
11+
import collections
1212

1313
from python_toolbox import cute_inspect
1414

0 commit comments

Comments
 (0)