Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User settings #47

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open

User settings #47

wants to merge 2 commits into from

Conversation

IwonaAnna2024
Copy link
Collaborator

@IwonaAnna2024 IwonaAnna2024 commented Nov 24, 2024

User seetings:

  • listing users
  • annding new user
  • deleting user
  • updating user's name
  • finding user
  • listing devices the user has access to

https://jira.is-academy.pl/browse/JPYDZR6SCD-40

user_settings.py Outdated
Comment on lines 93 to 94
if __name__ == '__main__':
...
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tutaj if _name__ == '__main__' nie jest potrzebne. Stosujemy to tylko, jeśli mamy jakiś kod, który nie jest zawarty w funkcjach/klasach, bo on nam się wtedy odpali od razu przy pobieraniu pliku do innego modułu.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do tego przypominam jeszcze raz o pustej linijce na końcu pliku.

user_settings.py Outdated
if len(json_data) == 0:
return "There are no users"
else:
return [(self.user["user_id"], self.user["name"] for self.user in json_data["users"]]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sprawdź dokładnie, jak działają comprehension lists. Tu niepotrzebne jest to self, bo zobacz że wtedy Python będzie Ci szukał w tym self, które przekazujesz do tej metody (czyli tak naprawdę do Twojego obiektu klasy UserSettings atrybutu user, którego nie masz. Ty chcesz po prostu przejść po elementach listy json_data["users"].

user_settings.py Outdated
print("User not found")

# Finding user
def find_user(self, user_id: int, name: str):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

get_user będzie lepsze

user_settings.py Outdated

# Querying list of users
def get_users_list(self):
json_data = self.load_json_user_file()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Część tych wszystkich funkcji będziemy chcieli w przyszłości reużyć, a nie będziemy już mieli jsona. Poza tym i tak te nazwy zmiennych powinny bardziej opisywać, co dokładnie pobierasz, niż tylko json_data. Proszę zmień te wszystkie nazwy na coś bardziej intuicyjnego, np users.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants