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

This commit is contained in:
reivilibre 2021-10-11 16:28:29 +01:00 committed by GitHub
parent b742cb2e4a
commit 4c838112dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/11043.misc Normal file
View file

@ -0,0 +1 @@
Remove unnecessary list comprehension from `synapse_port_db` to satisfy code style requirements.

View file

@ -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