Skip to content

Commit

Permalink
This is no longer used, None isn't special anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Sep 14, 2023
1 parent 905bd4a commit 517f8d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
whenever they are modified.
"""
from __future__ import annotations
from typing import Generator, TypeVar, Any, Type, Generic, Callable, Awaitable
from typing import Generator, TypeVar, Any, Generic, Callable, Awaitable
from typing_extensions import ParamSpec

from contextlib import contextmanager
Expand All @@ -28,7 +28,6 @@
ArgT = ParamSpec('ArgT')
ValueT = TypeVar('ValueT')
ValueT_co = TypeVar('ValueT_co', covariant=True)
NoneType: Type[None] = type(None)


@attrs.define(init=False, eq=False)
Expand Down

0 comments on commit 517f8d7

Please sign in to comment.