Skip to content

Commit

Permalink
Mark uncovered path in interface
Browse files Browse the repository at this point in the history
Improve the coverage numbers by marking an untested path as
not having coverage.

Signed-off-by: Joshua Lock <[email protected]>
  • Loading branch information
joshuagl committed Apr 21, 2020
1 parent 298f948 commit c44e525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion securesystemslib/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
from colorama import Fore
TERM_RED = Fore.RED
TERM_RESET = Fore.RESET
except ImportError:
except ImportError: # pragma: no cover
logger.debug("Failed to find colorama module, terminal output won't be colored")
TERM_RED = ''
TERM_RESET = ''
Expand Down

0 comments on commit c44e525

Please sign in to comment.