diff --git a/ccm/lib/actr/core.py b/ccm/lib/actr/core.py index 3619c59..54168fa 100755 --- a/ccm/lib/actr/core.py +++ b/ccm/lib/actr/core.py @@ -1,6 +1,6 @@ import ccm -import collections +import typing class ACTR(ccm.ProductionSystem): production_time_sd=None @@ -26,7 +26,7 @@ def _process_productions(self): a=max(activations) threshold=self.production_threshold - if isinstance(threshold, collections.Callable): threshold=threshold() + if isinstance(threshold, typing.Callable): threshold=threshold() if threshold is not None and a