From 3b4785926151f58b9b1f63559f0018b72f9de656 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Mon, 9 Nov 2015 13:58:09 -0800 Subject: [PATCH] Add missing 'type:' --- builtins/2.7/posix.pyi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builtins/2.7/posix.pyi b/builtins/2.7/posix.pyi index 2257c8c84..dc8ae5ded 100644 --- a/builtins/2.7/posix.pyi +++ b/builtins/2.7/posix.pyi @@ -2,10 +2,10 @@ from typing import List, Mapping, Tuple, Union, Sequence, IO, Optional, TypeVar error = OSError -confstr_names = ... # Dict[str, int] -environ = ... # Dict[str, str] -pathconf_names = ... # Dict[str, int] -sysconf_names = ... # Dict[str, int] +confstr_names = ... # type: Dict[str, int] +environ = ... # type: Dict[str, str] +pathconf_names = ... # type: Dict[str, int] +sysconf_names = ... # type: Dict[str, int] EX_CANTCREAT= ... # type: int EX_CONFIG= ... # type: int