Add type for distutils.command.install.SCHEME_KEYS (#4863)

This commit is contained in:
Jon Dufresne
2020-12-27 10:54:43 -08:00
committed by GitHub
parent 87278af3e5
commit 2cb6b14834

View File

@@ -1,5 +1,7 @@
from distutils.cmd import Command
from typing import Optional
from typing import Optional, Tuple
SCHEME_KEYS: Tuple[str, ...]
class install(Command):
user: bool