Skip to content

Commit ef7b722

Browse files
committed
fix(lint): resolve flake8 line length error in backfill script
1 parent 93460c9 commit ef7b722

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

judge/management/commands/backfill_problem_data_size.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def handle(self, *args, **options):
5555

5656
self.stdout.write(
5757
f'Problem: {problem_data.problem_id}\n'
58-
f' Total Storage: {self._format_size(old_zipfile_size)} -> {self._format_size(new_zipfile_size)}\n',
58+
f' Total Storage: {self._format_size(old_zipfile_size)} '
59+
f'-> {self._format_size(new_zipfile_size)}\n',
5960
)
6061

6162
if len(batch) >= batch_size and not dry_run:

0 commit comments

Comments
 (0)