diff options
author | Bernát Gábor <bgabor8@bloomberg.net> | 2020-05-12 13:38:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 13:38:39 +0100 |
commit | 11d922b85f1f43f2234c127f98ee526159f80389 (patch) | |
tree | e283e3d5deeb6c8fe62a9e513f0616458a243c3e /docs/render_cli.py | |
parent | b8ded22edbc752ad7ff50eae3e2cb10eb944712c (diff) | |
download | virtualenv-11d922b85f1f43f2234c127f98ee526159f80389.tar.gz |
Bump linters (#1823)
Diffstat (limited to 'docs/render_cli.py')
-rw-r--r-- | docs/render_cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/render_cli.py b/docs/render_cli.py index 568235d..f905206 100644 --- a/docs/render_cli.py +++ b/docs/render_cli.py @@ -52,13 +52,13 @@ class CliTable(SphinxDirective): if core_names: rows = [i for i in next(iter(results.values())) if tuple(i["name"]) in core_names] content.append( - self._build_table(rows, title="core", description="options shared across all {}".format(key)) + self._build_table(rows, title="core", description="options shared across all {}".format(key)), ) for name, group in results.items(): rows = [i for i in group if tuple(i["name"]) not in core_names] if rows: content.append( - self._build_table(rows, title=name, description="options specific to {} {}".format(key, name)) + self._build_table(rows, title=name, description="options specific to {} {}".format(key, name)), ) return content |