mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 03:50:24 +09:00
Fix pycodestyle "line break after binary operator" warnings
This commit is contained in:
6
debian/lib/python/debian_linux/firmware.py
vendored
6
debian/lib/python/debian_linux/firmware.py
vendored
@@ -79,9 +79,9 @@ class FirmwareWhence(list):
|
||||
else:
|
||||
licence = value
|
||||
elif licence is not None:
|
||||
licence = (licence + '\n' +
|
||||
re.sub(r'^(?:[/ ]\*| \*/)?\s*(.*?)\s*$', r'\1',
|
||||
line))
|
||||
licence = (licence + '\n'
|
||||
+ re.sub(r'^(?:[/ ]\*| \*/)?\s*(.*?)\s*$', r'\1',
|
||||
line))
|
||||
|
||||
# Finish last section if non-empty
|
||||
for b in binary:
|
||||
|
||||
Reference in New Issue
Block a user