This adds more accurate utils for generating a snowflake from datetime. #91

Open
JDJGInc wants to merge 18 commits from JDJGInc/2.0 into 2.0
Showing only changes of commit 061b2e3d90 - Show all commits

View File

@@ -310,8 +310,7 @@ def oauth_url(
if redirect_uri is not MISSING:
from urllib.parse import urlencode
url += "&response_type=code&" + \
urlencode({"redirect_uri": redirect_uri})
url += "&response_type=code&" + urlencode({"redirect_uri": redirect_uri})
if disable_guild_select:
url += "&disable_guild_select=true"
return url