Revert some bytes handlers as it was never public at the first place.

This commit is contained in:
Andy_kl
2025-01-02 19:49:20 +04:00
parent 85eb29e25d
commit 66fd602018
9 changed files with 8 additions and 25 deletions
-6
View File
@@ -894,9 +894,6 @@ fix_dlc("renios", "renios")
if not os.path.exists(path):
raise Exception("{} does not exist.".format(path))
if isinstance(file_list, bytes):
raise Exception("File lists must be str, not bytes.")
if isinstance(file_list, str):
file_list = file_list.split()
@@ -910,9 +907,6 @@ fix_dlc("renios", "renios")
Adds an empty directory to the file lists.
"""
if isinstance(file_list, bytes):
raise Exception("File lists must be str, not bytes.")
if isinstance(file_list, str):
file_list = file_list.split()