(param_name: str)
| 233 | doc = inspect.getdoc(method) |
| 234 | |
| 235 | def is_valid_param_name(param_name: str) -> bool: |
| 236 | assert ( |
| 237 | param_name in inputs |
| 238 | ), f"Unexpected param name '{param_name}' in {cls.__name__} docstring (missing from signature)." |
| 239 | return True |
| 240 | |
| 241 | def is_valid_filter_glob(filter_glob: str) -> bool: |
| 242 | # e.g. '*.ifc;*.ifczip;*.ifcxml' |