diff --git a/rivescript/sorting.py b/rivescript/sorting.py index bbdf6f4..db9338a 100644 --- a/rivescript/sorting.py +++ b/rivescript/sorting.py @@ -47,7 +47,7 @@ def __init__(self, pattern, index, weight, inherit = sys.maxsize): self.option = self.alphabet.count('[') + self.alphabet.count('(') # Number of option 0 < 1 if self.star > 0: - if self.pound == 0 & self.under == 0 & self.option == 0: # Place single star last in the rank + if (self.pound == 0) & (self.under == 0) & (self.option == 0): # Place single star last in the rank self.pound = sys.maxsize self.under = sys.maxsize self.option = sys.maxsize