You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/posit/connect/repository.py
+1-8Lines changed: 1 addition & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,6 @@
3
3
from __future__ importannotations
4
4
5
5
fromtyping_extensionsimport (
6
-
Any,
7
-
Hashable,
8
6
Optional,
9
7
Protocol,
10
8
overload,
@@ -15,11 +13,6 @@
15
13
from .resourcesimportResource, _Resource
16
14
17
15
18
-
# TODO-barret: Replace with Resource class from https://github.com/posit-dev/posit-sdk-py/pull/364/files#diff-94b7dc3c7d7d7c7b1a5f25e06c37df5fc53e1921cb10d41d4f04b18a715fae55R72
19
-
classResourceP(Protocol):
20
-
def__getitem__(self, key: Hashable, /) ->Any: ...
21
-
22
-
23
16
# ContentItem Repository uses a PATCH method, not a PUT for updating.
0 commit comments