Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu authored Jan 10, 2025
1 parent 8bdc1d4 commit 9fb4f9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions githubkit/github.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from collections.abc import Awaitable, Iterable
from collections.abc import Awaitable, Sequence
from functools import cached_property
from typing import TYPE_CHECKING, Any, Callable, Optional, TypeVar, Union, overload
from typing_extensions import ParamSpec
Expand Down Expand Up @@ -70,7 +70,7 @@ def __init__(
*,
base_url: Optional[Union[str, httpx.URL]] = None,
accept_format: Optional[str] = None,
previews: Optional[Iterable[str]] = None,
previews: Optional[Sequence[str]] = None,
user_agent: Optional[str] = None,
follow_redirects: bool = True,
timeout: Optional[Union[float, httpx.Timeout]] = None,
Expand All @@ -89,7 +89,7 @@ def __init__(
*,
base_url: Optional[Union[str, httpx.URL]] = None,
accept_format: Optional[str] = None,
previews: Optional[Iterable[str]] = None,
previews: Optional[Sequence[str]] = None,
user_agent: Optional[str] = None,
follow_redirects: bool = True,
timeout: Optional[Union[float, httpx.Timeout]] = None,
Expand All @@ -108,7 +108,7 @@ def __init__(
*,
base_url: Optional[Union[str, httpx.URL]] = None,
accept_format: Optional[str] = None,
previews: Optional[Iterable[str]] = None,
previews: Optional[Sequence[str]] = None,
user_agent: Optional[str] = None,
follow_redirects: bool = True,
timeout: Optional[Union[float, httpx.Timeout]] = None,
Expand Down

0 comments on commit 9fb4f9a

Please sign in to comment.