master branch updates #19
@ -34,6 +34,9 @@ def does_contain_OnlyNumbers(self, text):
|
||||
|
||||
return isJustNumbers
|
||||
|
||||
def rescale_value(self, value, min, max):
|
||||
return (value - min) / (max - min)
|
||||
|
||||
def contains_slur(self, input: str):
|
||||
containsSlur: bool = False
|
||||
parsedMessage = input.split(" ")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user