pylint tidy-up
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
eaf2761ae1
commit
82d174a6a8
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ def get_src_files(since: Optional[str]) -> List[str]:
|
||||||
cmd = ["git", "diff", "--name-only", "--" ] + src_files
|
cmd = ["git", "diff", "--name-only", "--" ] + src_files
|
||||||
output = subprocess.check_output(cmd, universal_newlines=True)
|
output = subprocess.check_output(cmd, universal_newlines=True)
|
||||||
uncommitted_changed_files = output.split()
|
uncommitted_changed_files = output.split()
|
||||||
src_files = set(committed_changed_files + uncommitted_changed_files)
|
src_files = list(set(committed_changed_files + uncommitted_changed_files))
|
||||||
|
|
||||||
generated_files = list_generated_files()
|
generated_files = list_generated_files()
|
||||||
# Don't correct style for third-party files (and, for simplicity,
|
# Don't correct style for third-party files (and, for simplicity,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue