Get rid of two todos we are not going to do ever.

This commit is contained in:
Jennifer Taylor 2021-08-31 21:41:12 +00:00
parent 3dd3f36208
commit e1c62b44df
2 changed files with 0 additions and 4 deletions

View File

@ -385,7 +385,6 @@ def load_containers(renderer: AFPRenderer, containers: List[str], *, need_extras
# This is a complicated one, as we need to be able to specify multiple
# directories of files as well as support IFS files and TXP2 files.
for container in containers:
# TODO: Allow specifying individual folders and such.
with open(container, "rb") as bfp:
data = bfp.read()

View File

@ -173,9 +173,6 @@ class StructPrinter:
# Hex makes no sense here
if dohex:
raise Exception("Cannot display string as hex!")
# TODO: We should have an optional encoding specifier that can be added to "z"
# so that individual entries in strings can be overridden from the default.
line.append(bs.decode(self.default_encoding))
else:
size = struct.calcsize(prefix + spec)