From b2c8ee3d6c8f8070a09337a7b4a59a65cd59625e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=98=EB=88=84?= Date: Wed, 22 Mar 2023 14:23:54 +0000 Subject: [PATCH] fix: typo --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 07e07b8..03bc389 100644 --- a/app.py +++ b/app.py @@ -24,7 +24,7 @@ client = LinkedRolesOAuth2( client_secret=os.getenv("CLIENT_SECRET"), redirect_uri=f"{os.getenv('REDIRECT_URI')}/discord", token=os.getenv("BOT_TOKEN"), - scopes=("identify", "role_connection.write"), + scopes=("identify", "role_connections.write"), state=os.getenv("COOKIE_SECRET") ) fn = Fernet(os.getenv("ENCRYPT_KEY"))