Skip to content

Commit

Permalink
Fix regression from talon update to version 0.0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
TestPlan committed Oct 17, 2018
1 parent 989147f commit 115191a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jetbrains.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def delayed_click():
_numeral_map[str(n)] = n
_numeral_map["oh"] = 0 # synonym for zero
_numeral_map["and"] = None # drop me
_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")+"
_optional_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")*"
_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")++"
_optional_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")**"


def text_to_number(words):
Expand Down

0 comments on commit 115191a

Please sign in to comment.