This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
One more pylint fix
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0-RC1
falkTX
4 years ago
parent
4db6bf43c5
commit
7eeefdd7c6
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
2 changed files
with
4 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
.travis/script-pylint.sh
+1
-1
source/frontend/widgets/racklistwidget.py
+ 3
- 1
.travis/script-pylint.sh
View File
@@ -19,7 +19,9 @@ ${pylint} \
--max-line-length=120 \
--max-locals=25 \
--max-statements=100 \
--enable=bad-continuation \
--enable=\
bad-continuation,\
len-as-condition \
--disable=\
bad-whitespace,\
broad-except,\
+ 1
- 1
source/frontend/widgets/racklistwidget.py
View File
@@ -316,7 +316,7 @@ class RackListWidget(QListWidget):
urls = event.mimeData().urls()
if
len(urls) == 0
:
if
not urls
:
return
tryItem = self.itemAt(event.pos())
Write
Preview
Loading…
Cancel
Save