Avoid to have any '-' in the names of the modules and project names. This is not compliant with the python coding style conventions and results in import errors.
Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.
Thus recommendation would be to replace multiply-dummywith multiply_dummy
The module has been renamed. If further violations of the PEP-8 should occur, we may open new issues - I don't think that renamings are worth raising issues, though.
Avoid to have any '-' in the names of the modules and project names. This is not compliant with the python coding style conventions and results in import errors.
A statement
import multiply-dummy
does not work.In the PEP8 conventions it says that
Thus recommendation would be to replace
multiply-dummy
withmultiply_dummy