Add import of shadowed module

This commit is contained in:
Matthew Honnibal 2024-02-08 15:47:34 +01:00
parent 21767acdd3
commit 2fad3a74ba

View File

@ -1,5 +1,8 @@
from wasabi import msg
# Needed for testing
from . import download as download_module # noqa: F401
from ._util import app, setup_cli # noqa: F401
from .apply import apply # noqa: F401
from .assemble import assemble_cli # noqa: F401