(arg: Any)
| 917 | |
| 918 | def __str__(self) -> str: |
| 919 | def get_name(arg: Any) -> str: |
| 920 | if isinstance(arg, inspect.Parameter): |
| 921 | return arg.name |
| 922 | if isinstance(arg, nodes.Argument): |
| 923 | return arg.variable.name |
| 924 | raise AssertionError |
| 925 | |
| 926 | def get_type(arg: Any) -> str | None: |
| 927 | if isinstance(arg, inspect.Parameter): |
nothing calls this directly
no test coverage detected