mirror of
https://github.com/justUmen/Bjornulf_custom_nodes.git
synced 2026-03-21 20:52:11 -03:00
0.65
This commit is contained in:
@@ -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),)
|
||||
Reference in New Issue
Block a user