Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

Commit

Permalink
fix: Fix Extension load example
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ue-Dev authored Sep 5, 2022
1 parent 6a0e338 commit 78e130c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Extension/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# These are just normal parts of the bot.

# To use files in CommandContext send, you need to load it as an extension.
client.load("interactions-ext-files")
client.load("interactions.ext.files")
# We load the Extension.
client.load("exts._files")

Expand Down
2 changes: 1 addition & 1 deletion examples/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# These are just normal parts of the bot.

# To use files in CommandContext send, you need to load it as an extension.
client.load("interactions-ext-files")
client.load("interactions.ext.files")

# We have the necessary parts, let's create a basic command to demonstrate it.

Expand Down

0 comments on commit 78e130c

Please sign in to comment.