diff options
author | Mark Tiedemann <www.marktiedemann@gmail.com> | 2020-06-09 17:50:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 17:50:41 +0200 |
commit | 314f666897e63ab9f982726724a7e4af1ca798a8 (patch) | |
tree | 3a605e22552f5bdf7f8f3c70290255cc8e3bd345 /tools/format.py | |
parent | 6e75254abb1d97541b1ce7a924a3e1c014807fff (diff) |
fix(tools): prettier formatting (#6206)
Diffstat (limited to 'tools/format.py')
-rwxr-xr-x | tools/format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/format.py b/tools/format.py index f81d99164..2f3faf0dd 100755 --- a/tools/format.py +++ b/tools/format.py @@ -64,8 +64,8 @@ def prettier(): while len(source_files) > 0: command.append(source_files.pop()) if len(" ".join(command)) > max_command_length: - run(command, shell=False, quiet=True) break + run(command, shell=False, quiet=True) def yapf(): |