Skip to content

Commit 51db26f

Browse files
committed
chore: ruff whitespace fixes.
1 parent 2ff5010 commit 51db26f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

roundup/cgi/client.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ def add_message(msg_list, msg, escape=True):
106106
msg_list.append(msg)
107107
return msg_list # for unittests
108108

109+
109110
# if set to False via interfaces.py do not log a warning when
110111
# xmlrpc is used and defusedxml is not installed.
111112
WARN_FOR_MISSING_DEFUSEDXML = True
@@ -1938,19 +1939,19 @@ def reauth(self, exception):
19381939
19391940
Can be overridden by code in tracker's interfaces.py.
19401941
"""
1941-
1942+
19421943
from roundup.anypy.cgi_ import MiniFieldStorage
19431944

19441945
original_action = self.form['@action'].value if '@action' \
19451946
in self.form else ""
19461947
original_template = self.template
19471948

19481949
self.template = 'reauth'
1949-
self.form.list = [ x for x in self.form.list
1950-
if x.name not in ('@action',
1951-
'@csrf',
1952-
'@template'
1953-
)]
1950+
self.form.list = [x for x in self.form.list
1951+
if x.name not in ('@action',
1952+
'@csrf',
1953+
'@template'
1954+
)]
19541955

19551956
# save the action and template used when the Reauth as
19561957
# triggered. Will be used to resolve the change by the reauth

0 commit comments

Comments
 (0)