Skip to content

Commit e2ac632

Browse files
committed
flake8 fix
1 parent 851b8b8 commit e2ac632

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

util/runparams.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,8 @@ def print_sphinx_tables(self, outfile="params-sphinx.inc"):
322322

323323
for key in keys:
324324
_, option = key.split('.')
325-
f.write(entry.format(option, "``{}``".format(str(self.params[key]).strip()), self.param_comments[key].strip()))
325+
f.write(entry.format(option, "``{}``".format(str(self.params[key]).strip()),
326+
self.param_comments[key].strip()))
326327
f.write(separator)
327328

328329
f.write("\n")

0 commit comments

Comments
 (0)