Skip to content

Commit

Permalink
fix for 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomatree committed Jan 5, 2022
1 parent 3754357 commit 8aafa8b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion revolt/ext/commands/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
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)

Expand All @@ -21,6 +20,9 @@
"command"
)

NoneType = type(None)


class Command:
"""Class for holding info about a command.
Expand Down

0 comments on commit 8aafa8b

Please sign in to comment.