(self)
| 49 | |
| 50 | @property |
| 51 | def optional(self) -> bool: |
| 52 | return self.kind.is_optional() |
| 53 | |
| 54 | def __repr__(self) -> str: |
| 55 | return "RuntimeArg(name={}, type={}, optional={!r}, pos_only={!r})".format( |
nothing calls this directly
no test coverage detected