File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 22
33from __future__ import annotations
44
5- import os
6-
75from requests import Response , Session
86from typing_extensions import TYPE_CHECKING , overload
97
108from . import hooks , me
11- from ._utils import is_local
129from .auth import Auth
1310from .config import Config
1411from .content import Content
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ def test_with_user_session_token_bad_token_local(self):
165165 assert str (e .value ) == "token must be set to non-empty string."
166166
167167 with pytest .raises (ValueError ) as e :
168- client .with_user_session_token (None ) # type: ignore
168+ client .with_user_session_token (None ) # type: ignore
169169 assert str (e .value ) == "token must be set to non-empty string."
170170
171171 def test__del__ (
You can’t perform that action at this time.
0 commit comments