lights-module #13

Merged
alex_orid merged 15 commits from lights-module into master 2021-04-09 17:19:55 +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(" ")