Skip to content

Commit

Permalink
Merge pull request #697 from ufal/list-in-tuple
Browse files Browse the repository at this point in the history
Enable lists inside tuples
  • Loading branch information
cifkao committed Apr 16, 2018
2 parents 124077f + 51db9a9 commit 1ac505a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuralmonkey/config/parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
INTEGER = re.compile(r"^-?[0-9]+$")
FLOAT = re.compile(r"^-?[0-9]*\.[0-9]*(e[+-]?[0-9]+)?$")
LIST = re.compile(r"\[([^]]*)\]")
TUPLE = re.compile(r"\(([^]]+)\)")
TUPLE = re.compile(r"\(([^)]+)\)")
STRING = re.compile(r'^"(.*)"$')
VAR_REF = re.compile(r"^\$([a-zA-Z][a-zA-Z0-9_]*)$")
OBJECT_REF = re.compile(
Expand Down

0 comments on commit 1ac505a

Please sign in to comment.