Skip to content

Commit 5541e9b

Browse files
authored
🐛 fix annotation quote
1 parent 284a210 commit 5541e9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

githubkit/github.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __init__(
9999
user_agent: str | None = None,
100100
follow_redirects: bool = True,
101101
timeout: float | httpx.Timeout | None = None,
102-
ssl_verify: bool | "ssl.SSLContext" = ...,
102+
ssl_verify: "bool | ssl.SSLContext" = ...,
103103
trust_env: bool = True,
104104
proxy: ProxyTypes | None = None,
105105
transport: httpx.BaseTransport | None = None,
@@ -125,7 +125,7 @@ def __init__(
125125
user_agent: str | None = None,
126126
follow_redirects: bool = True,
127127
timeout: float | httpx.Timeout | None = None,
128-
ssl_verify: bool | "ssl.SSLContext" = ...,
128+
ssl_verify: "bool | ssl.SSLContext" = ...,
129129
trust_env: bool = True,
130130
proxy: ProxyTypes | None = None,
131131
transport: httpx.BaseTransport | None = None,

0 commit comments

Comments
 (0)