summaryrefslogtreecommitdiff
path: root/doc/exts/pylint_options.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-30 17:32:47 +0200
committerGitHub <noreply@github.com>2023-04-30 15:32:47 +0000
commit434d49f69a65adf75c86dd9629ffbb6d8300df67 (patch)
tree9ece93e63917ba35c85108d75a39d690192c6371 /doc/exts/pylint_options.py
parent1cbc3d818b2b279747ef8d4222262fea4b21cccb (diff)
downloadpylint-git-434d49f69a65adf75c86dd9629ffbb6d8300df67.tar.gz
Make sure a ``tool`` table is created in ``toml`` generation (#8638)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'doc/exts/pylint_options.py')
-rw-r--r--doc/exts/pylint_options.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/exts/pylint_options.py b/doc/exts/pylint_options.py
index 64a7eda9c..170eefd1d 100644
--- a/doc/exts/pylint_options.py
+++ b/doc/exts/pylint_options.py
@@ -70,8 +70,10 @@ def _create_checker_section(
checker_string += get_rst_title(f"``{checker.capitalize()}`` **Checker**", "-")
toml_doc = tomlkit.document()
+ tool_table = tomlkit.table(is_super_table=True)
+ toml_doc.add(tomlkit.key("tool"), tool_table)
pylint_tool_table = tomlkit.table(is_super_table=True)
- toml_doc.add(tomlkit.key(["tool", "pylint"]), pylint_tool_table)
+ tool_table.add(tomlkit.key("pylint"), pylint_tool_table)
checker_table = tomlkit.table()