From 63cf7f529b9e9aee5a7c12c44519a4d873fa7ebf Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Tue, 23 Oct 2018 14:00:27 +0200 Subject: [PATCH] fix lint error (#2541) --- stdlib/2/types.pyi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stdlib/2/types.pyi b/stdlib/2/types.pyi index 443abc592..e4be0ef2f 100644 --- a/stdlib/2/types.pyi +++ b/stdlib/2/types.pyi @@ -88,8 +88,7 @@ class UnboundMethodType: def __init__(self, func: Callable, obj: object) -> None: ... def __call__(self, *args: Any, **kwargs: Any) -> Any: ... -class InstanceType(object): - pass +class InstanceType(object): ... MethodType = UnboundMethodType