Browse Source

Fix Optional normalisation not working properly

pull/7492/head
Rapptz 3 years ago
parent
commit
26fc694189
  1. 3
      discord/utils.py

3
discord/utils.py

@ -1047,9 +1047,6 @@ def evaluate_annotation(
if is_literal and not all(isinstance(x, (str, int, bool, type(None))) for x in evaluated_args):
raise TypeError('Literal arguments must be of type str, int, bool, or NoneType.')
if evaluated_args == args:
return tp
try:
return tp.copy_with(evaluated_args)
except AttributeError:

Loading…
Cancel
Save