Correcting some imports. By doing so, I have also broken the __main__.py

that was living in parser.py but repl.py is now usable :) The old tests
should probably be moved in the tests folder.
This commit is contained in:
2023-01-31 23:03:35 +01:00
parent a01234968d
commit c85d4de431
8 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
from lark import Lark, Transformer from lark import Transformer
from classes import * from .classes import *
from common import flatten from .common import flatten
from defaults import default_durs from .defaults import default_durs
from collections import Counter from collections import Counter
class ZiffersTransformer(Transformer): class ZiffersTransformer(Transformer):

View File

@ -1,5 +1,5 @@
from rich import print from rich import print
from mapper import * from .mapper import *
from pathlib import Path from pathlib import Path
from lark import Lark from lark import Lark