Closed BenGalewsky closed 3 years ago
What was the problem with removing the __init__.py
s?
funcx
and funcx_endpoint
are no longer namespace packages but complete packages sharing the same repo. While namespace packages shouldn't have an __init__.py
file in the root, regular packages need one.
Interesting! I did not know about namespace packages vs regular :D
Problem
PR #256 - removed the top level
__init__.py
files in the funcx_sdk and funcx_endpoint directories. It turns out this is a bad idea