Skip to content

Commit 8537452

Browse files
committed
Put coord_categorisation back to master
1 parent 0ad4c28 commit 8537452

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/iris/coord_categorisation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# (C) British Crown Copyright 2010 - 2019, Met Office
1+
# (C) British Crown Copyright 2010 - 2018, Met Office
22
#
33
# This file is part of Iris.
44
#
@@ -32,7 +32,7 @@
3232
import six
3333

3434
import calendar
35-
from collections import Counter
35+
import collections
3636

3737
import numpy as np
3838

@@ -246,7 +246,7 @@ def _validate_seasons(seasons):
246246
None otherwise.
247247
248248
"""
249-
c = Counter()
249+
c = collections.Counter()
250250
for season in seasons:
251251
c.update(_months_in_season(season))
252252
# Make a list of months that are not present...

0 commit comments

Comments
 (0)