diff options
Diffstat (limited to 'bot/exts/fun/anagram.py')
-rw-r--r-- | bot/exts/fun/anagram.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/anagram.py b/bot/exts/fun/anagram.py index d8ea6a55..8210d1d5 100644 --- a/bot/exts/fun/anagram.py +++ b/bot/exts/fun/anagram.py @@ -15,7 +15,7 @@ log = logging.getLogger(__name__) TIME_LIMIT = 60 # anagram.json file contains all the anagrams -with open(Path("bot/resources/fun/anagram.json"), "r") as f: +with open(Path("bot/resources/fun/anagram.json")) as f: ANAGRAMS_ALL = json.load(f) |