Skip to content

Commit b3e6e4f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b0fa36d commit b3e6e4f

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

pylint/testutils/_primer/comparator.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,10 @@ def __init__(
2727
self.pr_data: PackageMessages = {}
2828
for idx in range(batches):
2929
main_data.update(
30-
self._load_json(
31-
base_file.replace("BATCHIDX", "batch" + str(idx))
32-
)
30+
self._load_json(base_file.replace("BATCHIDX", "batch" + str(idx)))
3331
)
3432
self.pr_data.update(
35-
self._load_json(
36-
new_file.replace("BATCHIDX", "batch" + str(idx))
37-
)
33+
self._load_json(new_file.replace("BATCHIDX", "batch" + str(idx)))
3834
)
3935

4036
self.missing_messages: PackageMessages = {}

0 commit comments

Comments
 (0)