Skip to content

Commit

Permalink
formatted code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
vlouvet committed Dec 25, 2023
1 parent f61adba commit 8129f2e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions netsuite/soap_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,9 @@ async def searchMoreWithId(
self, searchId: str, pageIndex: int
) -> List[zeep.xsd.CompoundValue]:
"""Search records with pagination"""
return await self.request("searchMoreWithId", searchId=searchId, pageIndex=pageIndex)
return await self.request(

Check warning on line 478 in netsuite/soap_api/client.py

View check run for this annotation

Codecov / codecov/patch

netsuite/soap_api/client.py#L478

Added line #L478 was not covered by tests
"searchMoreWithId", searchId=searchId, pageIndex=pageIndex
)

@WebServiceCall(
"body.searchResult",
Expand All @@ -485,7 +487,9 @@ async def searchMoreWithId(
self, searchId: str, pageIndex: int
) -> List[zeep.xsd.CompoundValue]:
"""Search records with pagination"""
return await self.request("searchMoreWithId", searchId=searchId, pageIndex=pageIndex)
return await self.request(

Check warning on line 490 in netsuite/soap_api/client.py

View check run for this annotation

Codecov / codecov/patch

netsuite/soap_api/client.py#L490

Added line #L490 was not covered by tests
"searchMoreWithId", searchId=searchId, pageIndex=pageIndex
)

@WebServiceCall(
"body.writeResponseList",
Expand Down

0 comments on commit 8129f2e

Please sign in to comment.