Skip to content

Commit 032f055

Browse files
authored
Update utils.py
Someone complained it now being '' so I made it as such, I can revert it back if an issue
1 parent de41382 commit 032f055

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

discord/utils.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -74,19 +74,19 @@
7474

7575

7676
__all__ = (
77-
"oauth_url",
78-
"snowflake_time",
79-
"time_snowflake",
80-
"find",
81-
"get",
82-
"sleep_until",
83-
"utcnow",
84-
"remove_markdown",
85-
"escape_markdown",
86-
"escape_mentions",
87-
"as_chunks",
88-
"format_dt",
89-
"generate_snowflake",
77+
'oauth_url',
78+
'snowflake_time',
79+
'time_snowflake',
80+
'find',
81+
'get',
82+
'sleep_until',
83+
'utcnow',
84+
'remove_markdown',
85+
'escape_markdown',
86+
'escape_mentions',
87+
'as_chunks',
88+
'format_dt',
89+
'generate_snowflake',
9090
)
9191

9292
DISCORD_EPOCH = 1420070400000
@@ -1102,4 +1102,4 @@ async def autocomplete_callback(interaction: Interaction,
11021102
_values = await _values
11031103
return ([x for x in _values if x.lower().startswith(value.lower())])[:25]
11041104

1105-
return autocomplete_callback
1105+
return autocomplete_callback

0 commit comments

Comments
 (0)