From 868ca31562dcc5d484d8f015adfa173c0a43c415 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 21 Apr 2025 13:38:35 -0400 Subject: Update docs --- scripts/api_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/api_gen.py') diff --git a/scripts/api_gen.py b/scripts/api_gen.py index bc264e10..ffa8d0c0 100755 --- a/scripts/api_gen.py +++ b/scripts/api_gen.py @@ -40,7 +40,7 @@ def print_method(name, info): print("Argument | Type | Description | Default") print("---------|------|-------------|---------") for arg,arg_info in info["args"].items(): - default = '**Default:** `'+arg_info['default']+'`' if 'default' in arg_info else '' + default = '`'+arg_info['default']+'`' if 'default' in arg_info else '-' description = arg_info['description'].replace('\n', ' ') print(f"{arg} | `{arg_info.get('type', '')}` | {description} | {default}") #print(f"- **{arg}:** {arg_info['description']}") -- cgit v1.2.3