From 2cb6b14834b58f8923b80d91ae44524d3a0ecd43 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 27 Dec 2020 10:54:43 -0800 Subject: [PATCH] Add type for distutils.command.install.SCHEME_KEYS (#4863) --- stdlib/3/distutils/command/install.pyi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stdlib/3/distutils/command/install.pyi b/stdlib/3/distutils/command/install.pyi index 362bde5ac..12e83d976 100644 --- a/stdlib/3/distutils/command/install.pyi +++ b/stdlib/3/distutils/command/install.pyi @@ -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