Writer improvements.

This commit is contained in:
lwark
2025-07-24 11:16:37 -05:00
parent 1463cf9d2d
commit 2c6a8c4cc7
16 changed files with 85 additions and 32 deletions

View File

@@ -644,7 +644,7 @@ class BaseClass(Base):
return output
@classmethod
def clean_details_dict(cls, dictionary):
def clean_details_for_render(cls, dictionary):
output = {}
for k, value in dictionary.items():
match value:
@@ -668,7 +668,6 @@ class BaseClass(Base):
case _:
pass
output[k] = value
return output