From fe94a012eb79f75cc79cd111eb6d76331e44a9d3 Mon Sep 17 00:00:00 2001 From: Riddle <75004732+Riddle1001@users.noreply.github.com> Date: Thu, 16 Jun 2022 18:20:49 -0400 Subject: [PATCH] Fixed bug with @ next to paren throwing error (#883) Co-authored-by: Riddle <75004732+Aimware0@users.noreply.github.com> --- src/nip/transpile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nip/transpile.py b/src/nip/transpile.py index 1f66edf..e1d87ce 100644 --- a/src/nip/transpile.py +++ b/src/nip/transpile.py @@ -171,7 +171,8 @@ def validate_correct_parenthesis_syntax(current_pos, all_tokens, left_token=None TokenType.LE, TokenType.OR, TokenType.AND, - TokenType.SECTIONAND + TokenType.SECTIONAND, + TokenType.NOTIFICATION ] global OPENING_PARENTHESIS_COUNT