From 75fd49e6a1f0519ac8c1bfd1328ac275b3079f33 Mon Sep 17 00:00:00 2001 From: Varun J Date: Thu, 8 Sep 2022 11:34:07 +0530 Subject: [PATCH] [commands] fix Range to allow 3.10 Union syntax --- discord/ext/commands/converter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 18df5669a..fff3d12ac 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -1109,6 +1109,9 @@ else: # Trick to allow it inside typing.Union pass + def __or__(self, rhs) -> Any: + return Union[self, rhs] + def __class_getitem__(cls, obj) -> Range: if not isinstance(obj, tuple): raise TypeError(f'expected tuple for arguments, received {obj.__class__!r} instead')