When importing my new Python module into a Jupyter Notebook I receive a module not found error

Screen shot attached for your reference
My understanding is that this is related to the use of relative paths
Any thoughts on a resolution would be appreciated.

Try using absolute imports:

from codeload.mminto_jupyter.contracts import get_symbol_conid
1 Like

Thanks Brian, this fixed the problem