From 11b967ac0ab532d7549349dcfdc261cc6feb1e9d Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 14 Nov 2023 16:18:41 -0600 Subject: [PATCH] another type hint --- overrides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides.py b/overrides.py index 51f08fe..80408a3 100644 --- a/overrides.py +++ b/overrides.py @@ -38,7 +38,7 @@ class bytes(bbytes): return cls.value # type: ignore @classmethod - def lazy_decode(cls): + def lazy_decode(cls) -> str: "Lazily decode the bytes object using string manipulation" return str(cls.value)[2:-1]