From ef61e5c3ef394bf54833423a79388312f88464ce Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Sun, 9 Mar 2025 09:56:36 +0100 Subject: [PATCH] :recycle: Simplify App initialization by removing default intents in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7fba063..81955e9 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Currently, the package is in pre-release, so you need to use the `--prerelease=a from pycord_rest import App import discord -app = App(intents=discord.Intents.default()) +app = App() @app.slash_command(name="ping", description="Responds with pong!") async def ping(ctx):