From 9402254bb42da4dd89064328e5ce160d7262408e Mon Sep 17 00:00:00 2001 From: muchojp <61620767+muchojp@users.noreply.github.com> Date: Fri, 9 Oct 2020 09:26:00 +0900 Subject: [PATCH] Update decorators.py Because of the change in the structure of the "collections" module, I change a bit. --- src/wrf/decorators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wrf/decorators.py b/src/wrf/decorators.py index 806fbf5..2ff4dec 100644 --- a/src/wrf/decorators.py +++ b/src/wrf/decorators.py @@ -1,6 +1,7 @@ from __future__ import (absolute_import, division, print_function) -from collections import Iterable, OrderedDict +from collections import OrderedDict +from collections.abc import Iterable import wrapt import numpy as np