From f7457d6427aa708f7140782b9447af44b80150c5 Mon Sep 17 00:00:00 2001 From: Christina Cai Date: Wed, 12 Apr 2023 15:11:13 -0400 Subject: [PATCH] fixed circular import error --- openmc/model/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/model/model.py b/openmc/model/model.py index dd92518041..caf6301808 100644 --- a/openmc/model/model.py +++ b/openmc/model/model.py @@ -1,3 +1,4 @@ +from __future__ import annotations from collections.abc import Iterable from contextlib import contextmanager from functools import lru_cache @@ -17,7 +18,6 @@ from openmc.dummy_comm import DummyCommunicator from openmc.executor import _process_CLI_arguments from openmc.checkvalue import check_type, check_value from openmc.exceptions import InvalidIDError -from openmc.model import Model @contextmanager