From 166e56a8f04968f79bc8a5ec05af8e3b74677f42 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Wed, 5 Apr 2017 17:06:09 -0700 Subject: [PATCH] Fix missing 'type: ' in opcode.pyi (#1143) --- stdlib/2and3/opcode.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2and3/opcode.pyi b/stdlib/2and3/opcode.pyi index 4e72eae7a..4cc1ab03d 100644 --- a/stdlib/2and3/opcode.pyi +++ b/stdlib/2and3/opcode.pyi @@ -12,7 +12,7 @@ hascompare = ... # type: List[int] hasfree = ... # type: List[int] opname = ... # type: List[str] -opmap = ... # Dict[str, int] +opmap = ... # type: Dict[str, int] HAVE_ARGUMENT = ... # type: int EXTENDED_ARG = ... # type: int