Skip to content

Commit 3929db0

Browse files
committed
Lint
1 parent 1c0e539 commit 3929db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

logger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def write_build_info_entry(self, result: Result) -> None:
9898
with open(build_info_path, 'r') as f:
9999
build_info = json.load(f)
100100
except (json.JSONDecodeError, IOError):
101-
pass
101+
pass
102102

103103
existing_build_ids = {
104104
exec_info.get('build_id')
@@ -136,7 +136,7 @@ def write_build_info(self, trial_result: TrialResult) -> None:
136136
with open(build_info_path, 'r') as f:
137137
build_info = json.load(f)
138138
except (json.JSONDecodeError, IOError):
139-
pass
139+
pass
140140

141141
existing_build_ids = {
142142
exec_info.get('build_id')

0 commit comments

Comments
 (0)