Always use TypeAlias when assigning to Any (#8021)

This commit is contained in:
Alex Waygood
2022-06-06 02:16:20 +01:00
committed by GitHub
parent a2ba0c8a00
commit 43a9ab08d7
17 changed files with 65 additions and 45 deletions

View File

@@ -1,8 +1,9 @@
from typing import Any
from typing_extensions import TypeAlias
from ..cmd import Command
_Reporter = Any # really docutils.utils.Reporter
_Reporter: TypeAlias = Any # really docutils.utils.Reporter
# Only defined if docutils is installed.
class SilentReporter(_Reporter):