The .
is a shortcut that tells it to search in the current package before the rest of the PYTHONPATH
. So, if a same-named module Recipe
exists somewhere else in your PYTHONPATH
, it won’t be loaded.
The .
is a shortcut that tells it to search in the current package before the rest of the PYTHONPATH
. So, if a same-named module Recipe
exists somewhere else in your PYTHONPATH
, it won’t be loaded.