Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aryan26roy committed Jan 9, 2024
1 parent bd8b09f commit 46b83e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/formulate/ttreeformula.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from . import matching_tree

expression_grammar = """
expression_grammar = r'''
start: expression
expression: disjunction | disjunction ":" expression -> multi_out
disjunction: conjunction | conjunction "||" conjunction -> lor
Expand Down Expand Up @@ -47,7 +47,7 @@
%import common.NUMBER
%import common.WS
%ignore WS
"""
'''


def exp_to_ptree(exp: str):
Expand Down

0 comments on commit 46b83e1

Please sign in to comment.