Skip to content

Commit

Permalink
removed unused fields
Browse files Browse the repository at this point in the history
  • Loading branch information
dtandersen committed Mar 7, 2024
1 parent e12a50a commit 365411b
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/awsed/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,29 +77,17 @@ class UserResultJson:

@dataclass
class UserRequestJson:
username: str
firstName: Optional[str]
lastName: Optional[str]
roles: Optional[List[str]]
apiKey: Optional[str]
uid: int
uid: Optional[int]
homeFileSystem: Optional[str]

def __init__(
self,
username=None,
firstName=None,
lastName=None,
roles=None,
apiKey=None,
uid=None,
homeFileSystem=None,
):
self.username = username
self.firstName = firstName
self.lastName = lastName
self.roles = roles
self.apiKey = apiKey
self.uid = uid
self.homeFileSystem = homeFileSystem

Expand Down

0 comments on commit 365411b

Please sign in to comment.