Skip to content

Commit

Permalink
fix: black linter issue!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Jul 10, 2024
1 parent 0f891cd commit e55c227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discord_analyzer/analyzer/analyzer_heatmaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def analysis_heatmap(self, guildId: str, from_start: bool = False):
# Adding the interacting users
for users_reacting in entry["reactions"]:
for user in users_reacting.split(",")[:-1]:
if user not in account_list:
account_list.append(user)
if user not in account_list:
account_list.append(user)

if mentioned_users is not None:
for account in mentioned_users:
Expand Down

0 comments on commit e55c227

Please sign in to comment.