From afe6c8d244a7caddf5ef726a0643fd1cd3613998 Mon Sep 17 00:00:00 2001 From: Yury Kurlykov Date: Tue, 28 Apr 2020 12:01:35 +1000 Subject: [PATCH] Add __init__.py in lex module First of all, it has a docstring. --- jasminesnake/lex/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 jasminesnake/lex/__init__.py diff --git a/jasminesnake/lex/__init__.py b/jasminesnake/lex/__init__.py new file mode 100644 index 0000000..4350f91 --- /dev/null +++ b/jasminesnake/lex/__init__.py @@ -0,0 +1,3 @@ +"""Lexer/parser module. +Consists mostly of auto-generated files spewed by ANTLR. +"""