Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions WAS_Node_Suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -10526,10 +10526,6 @@ def text_search_and_replace(self, text, find, replace):
count += 1
return (new_text, count, float(count), int(count))

@classmethod
def IS_CHANGED(cls, **kwargs):
return float("NaN")


# Text Search and Replace By Dictionary

Expand Down Expand Up @@ -10571,10 +10567,6 @@ def text_search_and_replace_dict(self, text, dictionary, replacement_key, seed):

return (new_text, )

@classmethod
def IS_CHANGED(cls, **kwargs):
return float("NaN")


# Text Parse NSP

Expand Down Expand Up @@ -12321,12 +12313,6 @@ def return_randm_number(self, minimum, maximum, seed, number_type='integer'):
# Return number
return (number, float(number), round(number))

@classmethod
def IS_CHANGED(cls, seed, **kwargs):
m = hashlib.sha256()
m.update(seed)
return m.digest().hex()

# TRUE RANDOM NUMBER

class WAS_True_Random_Number:
Expand Down