Skip to content

Commit d6a7ff6

Browse files
committed
remove uncessary inits
1 parent 2b357b3 commit d6a7ff6

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/posit/connect/users.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@
1717

1818

1919
class User(Resource):
20-
def __init__(self, ctx: Context, /, **attributes) -> None:
21-
super().__init__(ctx, **attributes)
22-
self._ctx: Context = ctx
23-
2420
@property
2521
def content(self) -> Content:
2622
return Content(self._ctx, owner_guid=self["guid"])
@@ -306,10 +302,6 @@ def find(self) -> List[Group]:
306302
class Users(Resources):
307303
"""Users resource."""
308304

309-
def __init__(self, ctx: Context) -> None:
310-
super().__init__(ctx)
311-
self._ctx: Context = ctx
312-
313305
class CreateUser(TypedDict):
314306
"""Create user request."""
315307

0 commit comments

Comments
 (0)