Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Dummerle committed Jan 3, 2025
1 parent 269e841 commit 087f7a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions rare/components/tabs/library/details/details.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def __on_tag_change(self):
for w in self.custom_tags:
tag_list.append(w.layout().itemAt(0).widget().text())

logger.info(f"Saving Tags for {self.rgame.game.app_title}: {tag_list}")
logger.debug(f"Saving Tags for {self.rgame.game.app_title}: {tag_list}")

self.rgame.set_tags(tag_list)

Expand Down Expand Up @@ -419,8 +419,6 @@ def __update_widget(self):
self.ui.completed_check.setChecked("completed" in self.rgame.metadata.tags)
self.editing = False

logger.info(f"Tags: {self.rgame.metadata.tags}")

for tag in self.rgame.metadata.tags:
if tag in ["hidden", "favorite", "backlog", "completed"]:
continue
Expand Down
1 change: 0 additions & 1 deletion rare/components/tabs/library/head_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ def __init__(self, parent=None):

def tag_updated(self):
wordlist = list(map(lambda x: "::" + x, self.rcore.tag_list))
print(wordlist)
self.search_bar.completer().model().setStringList(wordlist)

def set_games_count(self, inst: int, avail: int) -> None:
Expand Down

0 comments on commit 087f7a5

Please sign in to comment.