Skip to content

Commit 5c83b14

Browse files
committed
Fix formatting
1 parent 3b6b632 commit 5c83b14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compliance/check.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,12 +657,12 @@ def get_msg_without_time(line: str) -> Optional[str]:
657657
continue
658658
if (not start_ranging_time) and (start_ranging_line == msg):
659659
start_ranging_time = get_time_from_line(
660-
line, date_regexp, file_path, 0 # timezone_offset
660+
line, date_regexp, file_path, 0 # timezone_offset
661661
)
662662
if (not stop_ranging_time) and bool(start_ranging_time):
663663
if ": Completed test" == msg:
664664
stop_ranging_time = get_time_from_line(
665-
line, date_regexp, file_path, 0 # timezone_offset
665+
line, date_regexp, file_path, 0 # timezone_offset
666666
)
667667
break
668668

@@ -677,7 +677,7 @@ def get_msg_without_time(line: str) -> Optional[str]:
677677
try:
678678
log_time = None
679679
log_time = get_time_from_line(
680-
line, date_regexp, file_path, 0 # timezone_offset
680+
line, date_regexp, file_path, 0 # timezone_offset
681681
)
682682
except LineWithoutTimeStamp:
683683
assert (

0 commit comments

Comments
 (0)