Skip to content

Commit

Permalink
whitespace fix
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Rodgman <[email protected]>
  • Loading branch information
dave-rodgman committed Jul 27, 2023
1 parent e67ffd6 commit dd7b24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/code_style.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_src_files(since: Optional[str]) -> List[str]:
output = subprocess.check_output(cmd, universal_newlines=True)
committed_changed_files = output.split()
# and also get all files with uncommitted changes
cmd = ["git", "diff", "--name-only", "--" ] + src_files
cmd = ["git", "diff", "--name-only", "--"] + src_files
output = subprocess.check_output(cmd, universal_newlines=True)
uncommitted_changed_files = output.split()
src_files = list(set(committed_changed_files + uncommitted_changed_files))
Expand Down

0 comments on commit dd7b24c

Please sign in to comment.