Skip to content

Commit d570f5b

Browse files
committed
no-cov on attribute error
1 parent dcda827 commit d570f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paths_cli/commands/contents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def contents(input_file, table):
3939
storage = INPUT_FILE.get(input_file)
4040
try:
4141
print(storage.filename)
42-
except AttributeError:
42+
except AttributeError: # no-cov (temporary fix)
4343
# TODO: this should be removed once SimStore has a `filename`
4444
# attribute
4545
print(storage)

0 commit comments

Comments
 (0)