summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2021-11-23 14:37:22 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2021-11-23 14:37:22 -0800
commit0ea444fc96527127a4b1da1d5f0c2efcab42912d (patch)
treeb4c8663515ce43ae59cf964df096f50446cc5747 /scripts
parent9f2f54fdd808949ce5fa7fab82941449db23d407 (diff)
downloadisort-0ea444fc96527127a4b1da1d5f0c2efcab42912d.tar.gz
Improve formatting of config option documentation
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build_config_option_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build_config_option_docs.py b/scripts/build_config_option_docs.py
index 95730221..17ae3e33 100755
--- a/scripts/build_config_option_docs.py
+++ b/scripts/build_config_option_docs.py
@@ -12,7 +12,7 @@ OUTPUT_FILE = os.path.abspath(
)
MD_NEWLINE = " "
HUMAN_NAME = {"py_version": "Python Version", "vn": "Version Number", "str": "String", "frozenset": "List of Strings", }
-CONFIG_DEFAULTS = {"False": "false", "True": "true"}
+CONFIG_DEFAULTS = {"False": "false", "True": "true", "None": ""}
DESCRIPTIONS = {}
IGNORED = {"source", "help", "sources", "directory"}
COLUMNS = ["Name", "Type", "Default", "Python / Config file", "CLI", "Description"]