Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Aug 3, 2024
1 parent 3958899 commit 72885d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curl_cffi/curl.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def _get_error(self, errcode: int, *args: Any):
return CurlError(
f"Failed to {action}, curl: ({errcode}) {errmsg}. "
"See https://curl.se/libcurl/c/libcurl-errors.html first for more details.",
code=cast(CurlECod, errcode),
code=cast(CurlECode, errcode),
)

def setopt(self, option: CurlOpt, value: Any) -> int:
Expand Down

0 comments on commit 72885d7

Please sign in to comment.