Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Apr 1, 2024
1 parent 40ba4b3 commit 7f0c096
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/kiara/registries/metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ def retrieve_environment_item(self, env_cid: str) -> "RuntimeEnvironment":
raise KiaraException(
f"No environment with id '{env_cid}' available in metadata store."
)

from kiara.models.runtime_environment import RuntimeEnvironment

if isinstance(_environment, RuntimeEnvironment):
environment = _environment
else:
Expand Down

0 comments on commit 7f0c096

Please sign in to comment.