(arg: Any)
| 924 | raise AssertionError |
| 925 | |
| 926 | def get_type(arg: Any) -> str | None: |
| 927 | if isinstance(arg, inspect.Parameter): |
| 928 | return None |
| 929 | if isinstance(arg, nodes.Argument): |
| 930 | return str(arg.variable.type or arg.type_annotation) |
| 931 | raise AssertionError |
| 932 | |
| 933 | def has_default(arg: Any) -> bool: |
| 934 | if isinstance(arg, inspect.Parameter): |
nothing calls this directly
no test coverage detected