diff options
m--------- | extras | 0 | ||||
-rw-r--r-- | textpre.py | 7 |
2 files changed, 4 insertions, 3 deletions
diff --git a/extras b/extras -Subproject 7aa016fb528bcc8dcb30c6a887957851623eccc +Subproject 2374a9ce905ccc4c701f81904b01019641e884b @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import extras.pokemontools.preprocessor as preprocessor +import extras.pokemontools.configuration as configuration import sys @@ -261,6 +262,6 @@ chars = { preprocessor.chars = chars -macros = [] -macro_table = preprocessor.make_macro_table(macros) -preprocessor.preprocess(macro_table) +config = configuration.Config() +processor = preprocessor.Preprocessor(config, []) +processor.preprocess() |