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: