master branch updates #19

Merged
alex_orid merged 32 commits from master into db-module 2021-04-09 20:43:03 +00:00
Showing only changes of commit 5ab2abc242 - Show all commits

View File

@ -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(" ")