Skip to content
Snippets Groups Projects
Unverified Commit 4c838112 authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Remove unnecessary list comprehension in `synapse_port_db` to fix linting in CI (#11043)

parent b742cb2e
No related branches found
No related tags found
No related merge requests found
Remove unnecessary list comprehension from `synapse_port_db` to satisfy code style requirements.
......@@ -1069,7 +1069,7 @@ class CursesProgress(Progress):
self.stdscr.addstr(0, 0, status, curses.A_BOLD)
max_len = max([len(t) for t in self.tables.keys()])
max_len = max(len(t) for t in self.tables.keys())
left_margin = 5
middle_space = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment