Skip to content

Commit

Permalink
Remove debugging output.
Browse files Browse the repository at this point in the history
  • Loading branch information
terjekv committed Jan 15, 2024
1 parent 9a1fcc3 commit 99b8c4d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ci/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ def replace_timestamps(obj: Any) -> Any:
elif isinstance(obj, list):
return [replace_timestamps(elem) for elem in obj]
elif isinstance(obj, str):
if timestamp_pattern.match(obj):
print("Replacing timestamp:", obj)
tmp = timestamp_pattern.sub("<TIME>", obj)
print("With:", tmp)

return timestamp_pattern.sub("<TIME>", obj)
return obj

Expand Down

0 comments on commit 99b8c4d

Please sign in to comment.