Skip to content

Commit

Permalink
Fixing typo and adding small bit of code in order to have servers be …
Browse files Browse the repository at this point in the history
…global
  • Loading branch information
Joshua Luckie committed Mar 31, 2024
1 parent e372a42 commit 80361ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion disc_bot/server_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
if history.exists():
with history.open(mode="r") as f:
history_data = json.load(f)
servers = ServerHolder.from_history(history_data)
servers = ServerContainer.from_history(history_data)
else:
servers = ServerContainer()

0 comments on commit 80361ee

Please sign in to comment.