Skip to content

Commit 6e4dd62

Browse files
committed
fix: Ensure that __init__ files exist in proto dirs
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent e0041f1 commit 6e4dd62

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sdk/python/setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,11 @@ def run(self):
224224
with open(f"{self.python_folder}/feast/{sub_folder}/__init__.py", 'w'):
225225
pass
226226

227+
with open(f"{self.python_folder}/__init__.py", 'w'):
228+
pass
229+
with open(f"{self.python_folder}/feast/__init__.py", 'w'):
230+
pass
231+
227232
for path in Path("feast/protos").rglob("*.py"):
228233
for folder in self.sub_folders:
229234
# Read in the file

0 commit comments

Comments
 (0)