In a jupyter notebook, I have
import modin.pandas as pd
import utils
utils.py
has import pandas as pd
Does the pd
in utils.py
import pandas
, or modin.pandas
? If the former, is there a way for me to make utils.py
use modin.pandas
from the jupyter notebook, without changing it in the code of utils.py