Don't return a blank string, that breaks my own code, lmao
This commit is contained in:
parent
11b967ac0a
commit
3065a94f8b
1 changed files with 1 additions and 1 deletions
|
@ -48,4 +48,4 @@ class bytes(bbytes):
|
||||||
try:
|
try:
|
||||||
return cls.decode(cls, errors = "ignore") # type: ignore
|
return cls.decode(cls, errors = "ignore") # type: ignore
|
||||||
except TypeError:
|
except TypeError:
|
||||||
return ""
|
return "nul"
|
||||||
|
|
Loading…
Reference in a new issue