Skip to content

Commit

Permalink
Remove some debugging code.
Browse files Browse the repository at this point in the history
  • Loading branch information
netsettler committed Sep 20, 2023
1 parent 637dff6 commit a5674b8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dcicutils/license_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,6 @@ def parse_simple_license_file(cls, *, filename):
lines = []
for i, line in enumerate(fp):
line = line.strip(' \t\n\r')
# if LicenseOptions.DEBUG: # pragma: no cover - this is just for debugging
# PRINT(str(i).rjust(3), line)
m = cls.COPYRIGHT_LINE.match(line) if line[:1].isupper() else None
if not m:
lines.append(line)
Expand Down

0 comments on commit a5674b8

Please sign in to comment.