mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
Upgrade codebase with pyupgrade (>=py3.6)
Added pyupgrade utility with manual stage to pre-commit and run on all files. Ref: https://github.com/asottile/pyupgrade Closes: deluge-torrent/deluge#326
This commit is contained in:
parent
16895b4a49
commit
ec0bcc11f5
261 changed files with 440 additions and 713 deletions
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright (C) 2014 Calum Lind <calumlind@gmail.com>
|
||||
# Copyright (C) 2010 Damien Churchill <damoxc@gmail.com>
|
||||
|
@ -70,7 +69,7 @@ def source_files_list(source_dir):
|
|||
|
||||
order_file = os.path.join(root, '.order')
|
||||
if os.path.isfile(order_file):
|
||||
with open(order_file, 'r') as _file:
|
||||
with open(order_file) as _file:
|
||||
for line in _file:
|
||||
if line.startswith('+ '):
|
||||
order_filename = line.split()[1]
|
||||
|
@ -97,7 +96,7 @@ def minify_file(file_debug, file_minified):
|
|||
return minify_closure(file_debug, file_minified)
|
||||
elif minify:
|
||||
with open(file_minified, 'w') as file_out:
|
||||
with open(file_debug, 'r') as file_in:
|
||||
with open(file_debug) as file_in:
|
||||
file_out.write(minify(file_in.read()))
|
||||
return True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue