Skip to content

Commit 78370de

Browse files
lint fixes
1 parent 8f8469e commit 78370de

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/posit/connect/client.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
from __future__ import annotations
44

5-
import os
6-
75
from requests import Response, Session
86
from typing_extensions import TYPE_CHECKING, overload
97

108
from . import hooks, me
11-
from ._utils import is_local
129
from .auth import Auth
1310
from .config import Config
1411
from .content import Content

tests/posit/connect/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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__(

0 commit comments

Comments
 (0)