Mount the UnmountedType as Argument
(self)
| 71 | return self.mount_as(InputField) |
| 72 | |
| 73 | def Argument(self): # noqa: N802 |
| 74 | """ |
| 75 | Mount the UnmountedType as Argument |
| 76 | """ |
| 77 | from .argument import Argument |
| 78 | |
| 79 | return self.mount_as(Argument) |
| 80 | |
| 81 | def __eq__(self, other): |
| 82 | return self is other or ( |