Skip to content

Commit

Permalink
make lint - mypy install types automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
deedy5 committed Apr 1, 2024
1 parent c222ace commit 95407e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -42,7 +42,7 @@ build: .preprocessed
lint:
ruff check
ruff format --diff
mypy .
mypy --install-types --non-interactive .

format:
ruff check --fix
Expand Down
2 changes: 1 addition & 1 deletion curl_cffi/requests/__init__.py
Expand Up @@ -91,7 +91,7 @@ def request(
impersonate: which browser version to impersonate.
thread: work with other thread implementations. choices: eventlet, gevent.
default_headers: whether to set default browser headers.
default_encoding: encoding for decoding response content if charset is not found in headers.
default_encoding: encoding for decoding response content if charset is not found in headers.
Defaults to "utf-8". Can be set to a callable for automatic detection.
curl_options: extra curl options to use.
http_version: limiting http version, http2 will be tries by default.
Expand Down
4 changes: 2 additions & 2 deletions curl_cffi/requests/session.py
Expand Up @@ -624,7 +624,7 @@ def __init__(
max_redirects: max redirect counts, default unlimited(-1).
impersonate: which browser version to impersonate in the session.
interface: which interface use in request to server.
default_encoding: encoding for decoding response content if charset is not found in headers.
default_encoding: encoding for decoding response content if charset is not found in headers.
Defaults to "utf-8". Can be set to a callable for automatic detection.
Notes:
Expand Down Expand Up @@ -907,7 +907,7 @@ def __init__(
allow_redirects: whether to allow redirection.
max_redirects: max redirect counts, default unlimited(-1).
impersonate: which browser version to impersonate in the session.
default_encoding: encoding for decoding response content if charset is not found in headers.
default_encoding: encoding for decoding response content if charset is not found in headers.
Defaults to "utf-8". Can be set to a callable for automatic detection.
Notes:
Expand Down

0 comments on commit 95407e6

Please sign in to comment.