Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b072271

Browse files
committed
Refactor SoftwareOnboarding
1 parent 74c00dd commit b072271

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agrirouter/onboarding/onboarding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ def _perform_request(self, params: BaseOnboardingParameter, url: str) -> request
3939
)
4040
raise RequestNotSigned
4141

42-
def verify(self, params: SoftwareOnboardingParameter) -> SoftwareOnboardingResponse:
42+
def verify(self, params: SoftwareOnboardingParameter) -> SoftwareVerifyOnboardingResponse:
4343
url = self._environment.get_verify_onboard_request_url()
4444
http_response = self._perform_request(params=params, url=url)
4545

46-
return SoftwareOnboardingResponse(http_response)
46+
return SoftwareVerifyOnboardingResponse(http_response)
4747

4848
def onboard(self, params: SoftwareOnboardingParameter) -> SoftwareOnboardingResponse:
4949
url = self._environment.get_secured_onboard_url()

0 commit comments

Comments
 (0)