From 44a00a1bfd7ed8c0a59bdce0ca940f268c06f258 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 14 Nov 2023 18:03:09 -0600 Subject: [PATCH] Fix docstring --- overrides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides.py b/overrides.py index 6b98bf0..ff1f81d 100644 --- a/overrides.py +++ b/overrides.py @@ -44,7 +44,7 @@ class bytes(bbytes): @classmethod def safe_decode(cls) -> str: - 'Calls cls.decode(cls, errors = "ignore"), if that errors, returns a blank bytes object' + 'Calls cls.decode(cls, errors = "ignore"), if that errors, returns a blank string' try: return cls.decode(cls.value, errors = "ignore") # type: ignore except TypeError: