aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/magic_8ball.py
diff options
context:
space:
mode:
authorGravatar AvianAnalyst <[email protected]>2019-06-20 03:06:15 -0400
committerGravatar AvianAnalyst <[email protected]>2019-06-20 03:06:15 -0400
commit6ccaa6400f1e7683598422c3a80ee2eb8ad108ca (patch)
tree26462af462c08e959fbf37c9ec47281e19a125fb /bot/seasons/evergreen/magic_8ball.py
parentClarified doc strings and tidied code per requests (diff)
Changed Path() arguments for readability
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
-rw-r--r--bot/seasons/evergreen/magic_8ball.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py
index 9add06af..55652af7 100644
--- a/bot/seasons/evergreen/magic_8ball.py
+++ b/bot/seasons/evergreen/magic_8ball.py
@@ -13,7 +13,7 @@ class Magic8ball(commands.Cog):
def __init__(self, bot):
self.bot = bot
- with open(Path("bot", "resources", "evergreen", "magic8ball.json"), "r") as file:
+ with open(Path("bot/resources/evergreen/magic8ball.json"), "r") as file:
self.answers = json.load(file)
@commands.command(name="8ball")