This commit is contained in:
justumen
2025-01-11 12:11:11 +01:00
parent 38b83ed8f5
commit efd4105287
20 changed files with 366 additions and 19 deletions

View File

@@ -1,3 +1,6 @@
class Everything(str):
def __ne__(self, __value: object) -> bool:
return False
class AnythingToText:
@classmethod
def INPUT_TYPES(s):
@@ -18,9 +21,4 @@ class AnythingToText:
def any_to_text(self, anything):
# Convert the input to string representation
return (str(anything),)
# Keep the Everything class definition as it's needed for type handling
class Everything(str):
def __ne__(self, __value: object) -> bool:
return False
return (str(anything),)