We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc50127 commit deed79dCopy full SHA for deed79d
imas/command/helpers.py
@@ -36,7 +36,7 @@ def min_version_guard(al_version: Version):
36
al_version: Minimum imas_core version required for this command.
37
"""
38
used_version = ll_interface._al_version
39
- if used_version >= al_version:
+ if used_version and used_version >= al_version:
40
return
41
click.echo(
42
f"This command requires at least version {al_version} of the Access Layer."
0 commit comments