From 64f15ddda69bb962ed8d2f310ad9094c7ea46dc7 Mon Sep 17 00:00:00 2001 From: Eric Vin Date: Fri, 8 Dec 2023 21:44:44 -0800 Subject: [PATCH] Added missing import --- src/scenic/core/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scenic/core/utils.py b/src/scenic/core/utils.py index 14b4292cc..123cbe4d2 100644 --- a/src/scenic/core/utils.py +++ b/src/scenic/core/utils.py @@ -367,6 +367,7 @@ def __repr__(self): ): get_type_hints = typing.get_type_hints else: + import types def get_type_hints(obj, globalns=None, localns=None): if not isinstance(obj, (type, types.ModuleType)) and globalns is None: