diff options
author | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 17:34:01 -0700 |
---|---|---|
committer | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 17:34:01 -0700 |
commit | ceddb579b0e0342dec9ebaebcac04d9de10f1bea (patch) | |
tree | 084dbfaeeee1b85739e208d19a1756c048319d17 | |
parent | 89c054a265caecb0681032a154077ed89fecf760 (diff) |
Cut pokeyellow build time in half by nuking __init__.py
Turns out that uselessly importing the 7300-line crystal.py on every
single invocation adds up!
-rw-r--r-- | pokemontools/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pokemontools/__init__.py b/pokemontools/__init__.py index 29330ac..e4adfb8 100644 --- a/pokemontools/__init__.py +++ b/pokemontools/__init__.py @@ -1,6 +1 @@ -from __future__ import absolute_import -from . import configuration as config -from . import crystal -from . import preprocessor - __version__ = "1.6.0" |