How do I modularize functions that work with dask?
I’m trying to modularize my functions that use Dask, but I keep encountering the error "No module named 'setup'"
. I can’t import any local module that is related to Dask, and currently, everything I do with Dask has to be in a single .py
file. How do I properly modularize functions that use Dask?