************* Module test_morphoblue_usde_dai_hyperdrive
.scripts/test_morphoblue_usde_dai_hyperdrive.py:1:0: C0114: Missing module docstring (missing-module-docstring)
.scripts/test_morphoblue_usde_dai_hyperdrive.py:7:0: E0611: No name 'HyperdriveFactoryTypes' in module 'hyperdrivetypes' (no-name-in-module)
.scripts/test_morphoblue_usde_dai_hyperdrive.py:7:0: E0611: No name 'IHyperdriveTypes' in module 'hyperdrivetypes' (no-name-in-module)
.scripts/test_morphoblue_usde_dai_hyperdrive.py:7:0: E0611: No name 'IMorphoBlueHyperdriveTypes' in module 'hyperdrivetypes' (no-name-in-module)
My guess is that it has something to do with the import * in __init__.py. We likely should try to codegen what we import, and constrain what packages we actually expose.
Importing
*Types
files from hyperdrivetypes result in pylint errors:My guess is that it has something to do with the
import *
in__init__.py
. We likely should try to codegen what we import, and constrain what packages we actually expose.