the following method in bookmark_rule.py seems to not be used anywhere in the project. or am i missing something?
@staticmethod
def __get_random_word_from_sentence(sentence):
word_list = re.sub("[^\w]", " ", sentence).split()
random_index = random.randint(0, len(word_list) - 1)
return word_list[random_index]
the following method in bookmark_rule.py seems to not be used anywhere in the project. or am i missing something?