Skip to content

Commit

Permalink
Temporary dragonfly workaround with type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
LexiconCode committed Aug 15, 2019
1 parent fdb04a5 commit c2395aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion castervoice/lib/dfplus/merge/ccrmerger.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def _create_repeat_rule(self, rule):
ORIGINAL, SEQ, TERMINAL = "original", "caster_base_sequence", "terminal"
alts = [RuleRef(rule=rule)] #+[RuleRef(rule=sm) for sm in selfmod]
single_action = Alternative(alts)
max = settings.SETTINGS["miscellaneous"]["max_ccr_repetitions"]
max = int(settings.SETTINGS["miscellaneous"]["max_ccr_repetitions"])
sequence = Repetition(single_action, min=1, max=max, name=SEQ)
original = Alternative(alts, name=ORIGINAL)
terminal = Alternative(alts, name=TERMINAL)
Expand Down

0 comments on commit c2395aa

Please sign in to comment.