Skip to content

Commit

Permalink
remove uncessary inits
Browse files Browse the repository at this point in the history
  • Loading branch information
tdstein committed Dec 16, 2024
1 parent 1fe8fda commit d76712f
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/posit/connect/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@


class User(Resource):
def __init__(self, ctx: Context, /, **attributes) -> None:
super().__init__(ctx, **attributes)
self._ctx: Context = ctx

@property
def content(self) -> Content:
return Content(self._ctx, owner_guid=self["guid"])
Expand Down Expand Up @@ -307,10 +303,6 @@ def find(self) -> List[Group]:
class Users(Resources):
"""Users resource."""

def __init__(self, ctx: Context) -> None:
super().__init__(ctx)
self._ctx: Context = ctx

class CreateUser(TypedDict):
"""Create user request."""

Expand Down

0 comments on commit d76712f

Please sign in to comment.