mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
PEP8 fix E225 missing whitespace around operator
This commit is contained in:
parent
46d754416d
commit
a28ede2b67
2 changed files with 3 additions and 3 deletions
|
|
@ -211,7 +211,7 @@ def scan_source(build_dir, root_dir, build):
|
|||
for i, line in enumerate(lines):
|
||||
if is_used_by_gradle(line):
|
||||
for name in suspects_found(line):
|
||||
count += handleproblem('usual supect \'%s\' at line %d' % (name, i+1), fd, fp)
|
||||
count += handleproblem('usual supect \'%s\' at line %d' % (name, i + 1), fd, fp)
|
||||
noncomment_lines = [l for l in lines if not common.gradle_comment.match(l)]
|
||||
joined = re.sub(r'[\n\r\s]+', ' ', ' '.join(noncomment_lines))
|
||||
for m in gradle_mavenrepo.finditer(joined):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue