Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion imas/command/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def print_ids(uri, ids, occurrence, print_all):
ids Name of the IDS to print (e.g. "core_profiles").
occurrence Which occurrence to print (defaults to 0).
"""
min_version_guard(Version("5.0"))
setup_rich_log_handler(False)

with DBEntry(uri, "r") as dbentry:
Expand Down
2 changes: 1 addition & 1 deletion imas/command/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def min_version_guard(al_version: Version):
al_version: Minimum imas_core version required for this command.
"""
used_version = ll_interface._al_version
if used_version >= al_version:
if used_version and used_version >= al_version:
return
click.echo(
f"This command requires at least version {al_version} of the Access Layer."
Expand Down
Loading