Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ponytailer committed Oct 29, 2024
1 parent f44de2a commit 96c94e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydantic_client/clients/abstract_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def parse(self, request: HttpRequest) -> Dict[str, Any]:
data, json = None, request.json_body
headers = request.request_headers if request.request_headers \
else self.config.headers
url = self.base_url + request.url,
url = self.base_url + request.url
return dict(url=url, data=data, json=json, headers=headers,
method=request.method, timeout=self.config.timeout)

Expand Down

0 comments on commit 96c94e5

Please sign in to comment.