mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
Fixed SIM118 (in-dict-keys): Use key in dict
instead of key in dict.keys()
This commit is contained in:
parent
44ba1e9e9f
commit
6e23d9d223
@ -1033,7 +1033,7 @@ def run_and_output_changes(env, pool):
|
|||||||
if op in {"replace", "insert"}:
|
if op in {"replace", "insert"}:
|
||||||
BufferedOutput(with_lines=cur_lines[j1:j2]).playback(out)
|
BufferedOutput(with_lines=cur_lines[j1:j2]).playback(out)
|
||||||
|
|
||||||
for category in prev_status.keys():
|
for category in prev_status:
|
||||||
if category not in cur_status:
|
if category not in cur_status:
|
||||||
out.add_heading(category)
|
out.add_heading(category)
|
||||||
out.print_warning("This section was removed.")
|
out.print_warning("This section was removed.")
|
||||||
|
Loading…
Reference in New Issue
Block a user