Skip to content

Commit

Permalink
style: black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Oct 18, 2023
1 parent 9d4b3db commit c1d0bfb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion netsuite/soap_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,11 @@ async def getList(
extract=lambda resp: resp["record"],
)
async def get(
self, recordType: str, *, internalId: Optional[int] = None, externalId: Optional[str] = None
self,
recordType: str,
*,
internalId: Optional[int] = None,
externalId: Optional[str] = None,
) -> zeep.xsd.CompoundValue:
"""Get a single record"""
if len([v for v in (internalId, externalId) if v is not None]) != 1:
Expand Down

0 comments on commit c1d0bfb

Please sign in to comment.