From 98d768b2c6f44365f3a7e797206d474ac0b51b8f Mon Sep 17 00:00:00 2001 From: Svyatoslav Ilinskiy Date: Thu, 3 Aug 2017 08:33:51 -0700 Subject: [PATCH] Re-export simplejson values (#1517) --- third_party/2/simplejson/__init__.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/2/simplejson/__init__.pyi b/third_party/2/simplejson/__init__.pyi index 5f94eb969..4565543b1 100644 --- a/third_party/2/simplejson/__init__.pyi +++ b/third_party/2/simplejson/__init__.pyi @@ -1,8 +1,8 @@ from typing import Any, IO -from simplejson.scanner import JSONDecodeError -from simplejson.decoder import JSONDecoder -from simplejson.encoder import JSONEncoder, JSONEncoderForHTML +from simplejson.scanner import JSONDecodeError as JSONDecodeError +from simplejson.decoder import JSONDecoder as JSONDecoder +from simplejson.encoder import JSONEncoder as JSONEncoder, JSONEncoderForHTML as JSONEncoderForHTML def dumps(obj: Any, *args: Any, **kwds: Any) -> str: ... def dump(obj: Any, fp: IO[str], *args: Any, **kwds: Any) -> None: ...