(self)
| 405 | self.args = args |
| 406 | |
| 407 | def to_engine(self) -> PathwayType: |
| 408 | return api.PathwayType.tuple(*[arg.to_engine() for arg in self.args]) |
| 409 | |
| 410 | def __new__(cls, *args: DType | EllipsisType) -> Tuple | List: # type: ignore[misc] |
| 411 | if any(isinstance(arg, EllipsisType) for arg in args): |