clan-cli: fix tests

This commit is contained in:
DavHau
2023-07-21 14:07:38 +02:00
parent f370635518
commit 7223b25ac6
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ from . import admin
has_argcomplete = True
try:
import argcomplete
except ImportError:
except ImportError: # pragma: no cover
has_argcomplete = False
@@ -25,5 +25,5 @@ def main() -> None:
parser.print_help()
if __name__ == "__main__":
if __name__ == "__main__": # pragma: no cover
main()