From 57bdfac018383a0753f427351eebe8c21d4dd311 Mon Sep 17 00:00:00 2001 From: Micaiah Parker Date: Sat, 24 Feb 2018 12:20:25 -0500 Subject: [PATCH] added UnexpectedToken to __init__ for help unit testing --- lark/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lark/__init__.py b/lark/__init__.py index b6138cd..eed52d3 100644 --- a/lark/__init__.py +++ b/lark/__init__.py @@ -1,5 +1,5 @@ from .tree import Tree, Transformer, InlineTransformer -from .common import ParseError, GrammarError +from .common import ParseError, GrammarError, UnexpectedToken from .lexer import UnexpectedInput, LexError from .lark import Lark from .utils import inline_args