Browse Source

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

reivilibre 2 years ago
parent
commit
4c838112dc
2 changed files with 2 additions and 1 deletions
  1. 1 0
      changelog.d/11043.misc
  2. 1 1
      scripts/synapse_port_db

+ 1 - 0
changelog.d/11043.misc

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

+ 1 - 1
scripts/synapse_port_db

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