Skip to content

Commit c44e525

Browse files
committed
Mark uncovered path in interface
Improve the coverage numbers by marking an untested path as not having coverage. Signed-off-by: Joshua Lock <[email protected]>
1 parent 298f948 commit c44e525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

securesystemslib/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
from colorama import Fore
5656
TERM_RED = Fore.RED
5757
TERM_RESET = Fore.RESET
58-
except ImportError:
58+
except ImportError: # pragma: no cover
5959
logger.debug("Failed to find colorama module, terminal output won't be colored")
6060
TERM_RED = ''
6161
TERM_RESET = ''

0 commit comments

Comments
 (0)