Skip to content

Commit

Permalink
get user
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuuggoo committed Oct 24, 2024
1 parent 5eb1771 commit 758025d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saturn_client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def get_user_usage(self, org_id: str, user_id: str, start: Union[dt.datetime, st

def get_user(self, user_id: str) -> Dict:
path = f"/api/users/{user_id}"
return execute_requset(self.session, self.settings.BASE_URL, path, method="GET")
return execute_request(self.session, self.settings.BASE_URL, path, method="GET")

def create_user(self, username: str, email: str, send_reset_email: bool = True) -> Dict:
body = {
Expand Down

0 comments on commit 758025d

Please sign in to comment.