From 2119cf1f95a8fb5f3b94c4d50668e81755b94c4c Mon Sep 17 00:00:00 2001 From: Svyatoslav Ilinskiy Date: Thu, 3 Aug 2017 00:05:43 -0700 Subject: [PATCH] Re-export simplejson values --- 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 5f94eb9696f6..4565543b17b4 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: ...