mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 03:47:57 +03:00
[Lint] Fix ruff lint gettext and type comparison
The gettext strings cannot be formatted until after the function return from gettext. Refs: https://docs.astral.sh/ruff/rules/f-string-in-get-text-func-call/ Refs: https://docs.astral.sh/ruff/rules/printf-in-get-text-func-call/
This commit is contained in:
parent
e7d08d7645
commit
2247668571
10 changed files with 37 additions and 35 deletions
|
@ -107,11 +107,11 @@ class IP:
|
||||||
try:
|
try:
|
||||||
q1, q2, q3, q4 = (int(q) for q in ip.split('.'))
|
q1, q2, q3, q4 = (int(q) for q in ip.split('.'))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise BadIP(_('The IP address "%s" is badly formed' % ip))
|
raise BadIP(_('The IP address "%s" is badly formed') % ip)
|
||||||
if q1 < 0 or q2 < 0 or q3 < 0 or q4 < 0:
|
if q1 < 0 or q2 < 0 or q3 < 0 or q4 < 0:
|
||||||
raise BadIP(_('The IP address "%s" is badly formed' % ip))
|
raise BadIP(_('The IP address "%s" is badly formed') % ip)
|
||||||
elif q1 > 255 or q2 > 255 or q3 > 255 or q4 > 255:
|
elif q1 > 255 or q2 > 255 or q3 > 255 or q4 > 255:
|
||||||
raise BadIP(_('The IP address "%s" is badly formed' % ip))
|
raise BadIP(_('The IP address "%s" is badly formed') % ip)
|
||||||
return cls(q1, q2, q3, q4)
|
return cls(q1, q2, q3, q4)
|
||||||
|
|
||||||
def quadrants(self):
|
def quadrants(self):
|
||||||
|
|
|
@ -33,7 +33,7 @@ class TestJSON:
|
||||||
async def test_get_remote_methods(self):
|
async def test_get_remote_methods(self):
|
||||||
json = JSON()
|
json = JSON()
|
||||||
methods = await json.get_remote_methods()
|
methods = await json.get_remote_methods()
|
||||||
assert type(methods) == tuple
|
assert isinstance(methods, tuple)
|
||||||
assert len(methods) > 0
|
assert len(methods) > 0
|
||||||
|
|
||||||
def test_render_fail_disconnected(self):
|
def test_render_fail_disconnected(self):
|
||||||
|
|
|
@ -28,7 +28,7 @@ class TestLog(BaseTestCase):
|
||||||
# Cause all warnings to always be triggered.
|
# Cause all warnings to always be triggered.
|
||||||
warnings.simplefilter('always')
|
warnings.simplefilter('always')
|
||||||
LOG.debug('foo')
|
LOG.debug('foo')
|
||||||
assert w[-1].category == DeprecationWarning
|
assert w[-1].category is DeprecationWarning
|
||||||
|
|
||||||
# def test_twisted_error_log(self):
|
# def test_twisted_error_log(self):
|
||||||
# from twisted.internet import defer
|
# from twisted.internet import defer
|
||||||
|
|
|
@ -330,7 +330,7 @@ class ConsoleUIWithDaemonBaseTestCase(UIWithDaemonBaseTestCase):
|
||||||
return UIWithDaemonBaseTestCase.set_up(self)
|
return UIWithDaemonBaseTestCase.set_up(self)
|
||||||
|
|
||||||
def patch_arg_command(self, command):
|
def patch_arg_command(self, command):
|
||||||
if type(command) == str:
|
if isinstance(command, str):
|
||||||
command = [command]
|
command = [command]
|
||||||
username, password = get_localhost_auth()
|
username, password = get_localhost_auth()
|
||||||
self.patch(
|
self.patch(
|
||||||
|
|
|
@ -34,7 +34,7 @@ class TestWebAPI(WebServerTestBase):
|
||||||
d = self.deluge_web.web_api.connect(self.host_id)
|
d = self.deluge_web.web_api.connect(self.host_id)
|
||||||
|
|
||||||
def on_connect(result):
|
def on_connect(result):
|
||||||
assert type(result) == tuple
|
assert isinstance(result, tuple)
|
||||||
assert len(result) > 0
|
assert len(result) > 0
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
|
@ -201,7 +201,7 @@ class BaseCommand:
|
||||||
for cmd_name in sorted([self.name] + self.aliases):
|
for cmd_name in sorted([self.name] + self.aliases):
|
||||||
if cmd_name not in subparsers._name_parser_map:
|
if cmd_name not in subparsers._name_parser_map:
|
||||||
if cmd_name in self.aliases:
|
if cmd_name in self.aliases:
|
||||||
opts['help'] = _('`%s` alias' % self.name)
|
opts['help'] = _('`%s` alias') % self.name
|
||||||
parser = subparsers.add_parser(cmd_name, **opts)
|
parser = subparsers.add_parser(cmd_name, **opts)
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ class Command(BaseCommand):
|
||||||
'--state',
|
'--state',
|
||||||
action='store',
|
action='store',
|
||||||
dest='state',
|
dest='state',
|
||||||
help=_('Show torrents with state STATE: %s.' % (', '.join(STATES))),
|
help=_('Show torrents with state STATE: %s.') % (', '.join(STATES)),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--sort',
|
'--sort',
|
||||||
|
|
|
@ -236,8 +236,9 @@ class AddTorrentDialog(component.Component):
|
||||||
_('Duplicate torrent(s)'),
|
_('Duplicate torrent(s)'),
|
||||||
_(
|
_(
|
||||||
'You cannot add the same torrent twice.'
|
'You cannot add the same torrent twice.'
|
||||||
' %d torrents were already added.' % count
|
' %d torrents were already added.'
|
||||||
),
|
)
|
||||||
|
% count,
|
||||||
self.dialog,
|
self.dialog,
|
||||||
).run()
|
).run()
|
||||||
|
|
||||||
|
@ -585,9 +586,9 @@ class AddTorrentDialog(component.Component):
|
||||||
self.files_treestore.iter_children(_iter), priorities
|
self.files_treestore.iter_children(_iter), priorities
|
||||||
)
|
)
|
||||||
elif not self.files_treestore.get_value(_iter, 1).endswith('/'):
|
elif not self.files_treestore.get_value(_iter, 1).endswith('/'):
|
||||||
priorities[
|
priorities[self.files_treestore.get_value(_iter, 3)] = (
|
||||||
self.files_treestore.get_value(_iter, 3)
|
self.files_treestore.get_value(_iter, 0)
|
||||||
] = self.files_treestore.get_value(_iter, 0)
|
)
|
||||||
_iter = self.files_treestore.iter_next(_iter)
|
_iter = self.files_treestore.iter_next(_iter)
|
||||||
return priorities
|
return priorities
|
||||||
|
|
||||||
|
|
|
@ -324,8 +324,7 @@ class GtkUI:
|
||||||
err_msg = _(
|
err_msg = _(
|
||||||
'Only Thin Client mode is available due to libtorrent import error: %s\n'
|
'Only Thin Client mode is available due to libtorrent import error: %s\n'
|
||||||
'To use Standalone mode, please see logs for error details.'
|
'To use Standalone mode, please see logs for error details.'
|
||||||
% (str(ex))
|
) % (str(ex))
|
||||||
)
|
|
||||||
|
|
||||||
except ImportError as ex:
|
except ImportError as ex:
|
||||||
log.exception(ex)
|
log.exception(ex)
|
||||||
|
|
|
@ -226,20 +226,20 @@ class Preferences(component.Component):
|
||||||
self.language_checkbox = self.builder.get_object('checkbutton_language')
|
self.language_checkbox = self.builder.get_object('checkbutton_language')
|
||||||
lang_model = self.language_combo.get_model()
|
lang_model = self.language_combo.get_model()
|
||||||
langs = get_languages()
|
langs = get_languages()
|
||||||
index = -1
|
lang_idx = -1
|
||||||
for i, l in enumerate(langs):
|
for idx, lang in enumerate(langs):
|
||||||
lang_code, name = l
|
lang_code, name = lang
|
||||||
lang_model.append([lang_code, name])
|
lang_model.append([lang_code, name])
|
||||||
if self.gtkui_config['language'] == lang_code:
|
if self.gtkui_config['language'] == lang_code:
|
||||||
index = i
|
lang_idx = idx
|
||||||
|
|
||||||
if self.gtkui_config['language'] is None:
|
if self.gtkui_config['language'] is None:
|
||||||
self.language_checkbox.set_active(True)
|
self.language_checkbox.set_active(True)
|
||||||
self.language_combo.set_visible(False)
|
self.language_combo.set_visible(False)
|
||||||
else:
|
else:
|
||||||
self.language_combo.set_visible(True)
|
self.language_combo.set_visible(True)
|
||||||
if index != -1:
|
if lang_idx != -1:
|
||||||
self.language_combo.set_active(index)
|
self.language_combo.set_active(lang_idx)
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
del self.gtkui_config
|
del self.gtkui_config
|
||||||
|
@ -647,15 +647,15 @@ class Preferences(component.Component):
|
||||||
'chk_move_completed'
|
'chk_move_completed'
|
||||||
).get_active()
|
).get_active()
|
||||||
|
|
||||||
new_core_config[
|
new_core_config['download_location'] = (
|
||||||
'download_location'
|
self.download_location_path_chooser.get_text()
|
||||||
] = self.download_location_path_chooser.get_text()
|
)
|
||||||
new_core_config[
|
new_core_config['move_completed_path'] = (
|
||||||
'move_completed_path'
|
self.move_completed_path_chooser.get_text()
|
||||||
] = self.move_completed_path_chooser.get_text()
|
)
|
||||||
new_core_config[
|
new_core_config['torrentfiles_location'] = (
|
||||||
'torrentfiles_location'
|
self.copy_torrent_files_path_chooser.get_text()
|
||||||
] = self.copy_torrent_files_path_chooser.get_text()
|
)
|
||||||
new_core_config['prioritize_first_last_pieces'] = self.builder.get_object(
|
new_core_config['prioritize_first_last_pieces'] = self.builder.get_object(
|
||||||
'chk_prioritize_first_last_pieces'
|
'chk_prioritize_first_last_pieces'
|
||||||
).get_active()
|
).get_active()
|
||||||
|
@ -956,7 +956,7 @@ class Preferences(component.Component):
|
||||||
mode = _('Thinclient') if was_standalone else _('Standalone')
|
mode = _('Thinclient') if was_standalone else _('Standalone')
|
||||||
dialog = YesNoDialog(
|
dialog = YesNoDialog(
|
||||||
_('Switching Deluge Client Mode...'),
|
_('Switching Deluge Client Mode...'),
|
||||||
_('Do you want to restart to use %s mode?' % mode),
|
_('Do you want to restart to use %s mode?') % mode,
|
||||||
)
|
)
|
||||||
dialog.run().addCallback(on_response)
|
dialog.run().addCallback(on_response)
|
||||||
|
|
||||||
|
@ -1381,7 +1381,9 @@ class Preferences(component.Component):
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
return ErrorDialog(
|
return ErrorDialog(
|
||||||
_('Error Adding Account'),
|
_('Error Adding Account'),
|
||||||
_(f'An error occurred while adding account: {account}'),
|
_('An error occurred while adding account: {account}').format(
|
||||||
|
account=account
|
||||||
|
),
|
||||||
parent=self.pref_dialog,
|
parent=self.pref_dialog,
|
||||||
details=ex,
|
details=ex,
|
||||||
).run()
|
).run()
|
||||||
|
@ -1434,8 +1436,8 @@ class Preferences(component.Component):
|
||||||
header = _('Remove Account')
|
header = _('Remove Account')
|
||||||
text = _(
|
text = _(
|
||||||
'Are you sure you want to remove the account with the '
|
'Are you sure you want to remove the account with the '
|
||||||
'username "%(username)s"?' % {'username': username}
|
'username "%(username)s"?'
|
||||||
)
|
) % {'username': username}
|
||||||
dialog = YesNoDialog(header, text, parent=self.pref_dialog)
|
dialog = YesNoDialog(header, text, parent=self.pref_dialog)
|
||||||
|
|
||||||
def dialog_finished(response_id):
|
def dialog_finished(response_id):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue