fix for 3.9

This commit is contained in:
Zomatree
2022-01-05 18:36:32 +00:00
parent 3754357812
commit 8aafa8b7f2
+3 -1
View File
@@ -3,7 +3,6 @@ from __future__ import annotations
import inspect
import traceback
from contextlib import suppress
from types import NoneType
from typing import (TYPE_CHECKING, Annotated, Any, Callable, Coroutine,
Literal, Optional, Union, get_args, get_origin, cast)
@@ -21,6 +20,9 @@ __all__ = (
"command"
)
NoneType = type(None)
class Command:
"""Class for holding info about a command.