Skip to content

Commit

Permalink
warnsystem: remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
laggron42 committed Oct 31, 2023
1 parent 257d74a commit 2981699
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion warnsystem/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ def _get_label(self, level: int) -> Tuple[str, str]:
def set_options(self, cases: List[dict]):
options: List[discord.SelectOption] = []
for i, case in enumerate(cases, start=self.source.per_page * self.current_page):
print(i)
name, emote = self._get_label(case["level"])
date = pretty_date(self.api._get_datetime(case["time"]))
if case["reason"] and len(name) + len(case["reason"]) > 25:
Expand Down

0 comments on commit 2981699

Please sign in to comment.