diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2022-01-23 16:03:41 +0100 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-04-07 17:16:26 -0400 |
commit | f192ecd1effbed2dcc507707a780ecc8e95a537e (patch) | |
tree | 0bd70bccf31ce700856f542e1b4b75d0be0107ae /docs/jsonvalidator.py | |
parent | 0808ae1b3d32eebd68342329428631e6a9be4248 (diff) | |
download | meson-f192ecd1effbed2dcc507707a780ecc8e95a537e.zip meson-f192ecd1effbed2dcc507707a780ecc8e95a537e.tar.gz meson-f192ecd1effbed2dcc507707a780ecc8e95a537e.tar.bz2 |
docs: refman: Add `arg_flattening` support
Diffstat (limited to 'docs/jsonvalidator.py')
-rwxr-xr-x | docs/jsonvalidator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/jsonvalidator.py b/docs/jsonvalidator.py index 6a55ddb..1b2c637 100755 --- a/docs/jsonvalidator.py +++ b/docs/jsonvalidator.py @@ -82,6 +82,7 @@ def validate_function(path: str, name: str, func: dict) -> None: 'optargs': dict, 'kwargs': dict, 'varargs': (dict, T_None), + 'arg_flattening': bool, } cur = assert_has_typed_keys(f'{path}.{name}', func, expected) assert not func, f'{path}.{name} has extra keys: {func.keys()}' |