From fa192c9d863e6aa8f4247a1d71d2e8fd24b43df5 Mon Sep 17 00:00:00 2001 From: Prilkop Date: Sun, 16 Jun 2024 15:45:11 +0300 Subject: [PATCH] Fixed Adapter._decode typehints --- construct-stubs/core.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/construct-stubs/core.pyi b/construct-stubs/core.pyi index 4a28191..6b4a063 100644 --- a/construct-stubs/core.pyi +++ b/construct-stubs/core.pyi @@ -182,7 +182,7 @@ class Adapter( self, subcon: Construct[SubconParsedType, SubconBuildTypes] ) -> None: ... def _decode( - self, obj: SubconBuildTypes, context: Context, path: PathType + self, obj: SubconParsedTypes, context: Context, path: PathType ) -> ParsedType: ... def _encode( self, obj: BuildTypes, context: Context, path: PathType