mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 03:47:57 +03:00
[Lint] Cleanup helper scripts to pass PyLint
This commit is contained in:
parent
807fa609f9
commit
d280fa9fbd
7 changed files with 30 additions and 20 deletions
|
@ -15,6 +15,8 @@ Usage: python minify_web_js.py deluge/ui/web/js/deluge-all
|
|||
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import fileinput
|
||||
import fnmatch
|
||||
import os
|
||||
|
@ -106,5 +108,5 @@ if __name__ == '__main__':
|
|||
else:
|
||||
JS_SOURCE_DIRS = [os.path.abspath(sys.argv[1])]
|
||||
|
||||
for source_dir in JS_SOURCE_DIRS:
|
||||
minify_js_dir(source_dir)
|
||||
for js_source_dir in JS_SOURCE_DIRS:
|
||||
minify_js_dir(js_source_dir)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue