(self, url: Text)
| 495 | return RequestWithOptionalArgs(self.__step) |
| 496 | |
| 497 | def patch(self, url: Text) -> RequestWithOptionalArgs: |
| 498 | self.__step.request = TRequest(method=MethodEnum.PATCH, url=url) |
| 499 | return RequestWithOptionalArgs(self.__step) |
nothing calls this directly
no test coverage detected