Skip to content

Commit

Permalink
Remove unneeded skeleton functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ezratweaver committed Apr 3, 2024
1 parent adfc446 commit 279e209
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions screens/user_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def print_user_buttons(self, usercount: int):
self.title_buttons[x].config(text=f"{user['displayname']}",
font=("Encode Sans", font_size))
self.action_buttons[x].config(image=assets.userscreen_userprofile)

for x, title_button in enumerate(self.title_buttons):
title_button.bind("<Enter>", lambda event, x=x:
assets.button_event_map(event, self.canvas,
Expand All @@ -114,15 +115,6 @@ def print_user_buttons(self, usercount: int):
assets.button_event_map(event, self.canvas,
self.action_buttons_bg[x], assets.buttons["square"]))

def log_into_user(self, user_position: int) -> dict:
pass

def view_user(self, user_position: int) -> dict:
pass

def create_user(self) -> None:
pass

def show_canvas(self) -> None:
memory.all_users = check_for_users()
usercount = len(memory.all_users)
Expand Down

0 comments on commit 279e209

Please sign in to comment.