This commit is contained in:
justumen
2025-03-19 17:36:25 +01:00
parent 44d69e8907
commit 39dfb0220a
76 changed files with 3207 additions and 955 deletions

View File

@@ -22,4 +22,7 @@ class DisplayNote:
def display_text_pass(self, any, display_text):
# Simply pass through the input
return (any,)
if any is None:
return (None,)
else:
return (any,)