From 95a124b49e7ea0b516748fe192d1a5d1c6ed922f Mon Sep 17 00:00:00 2001 From: Dan Plyukhin Date: Fri, 4 Sep 2026 18:01:42 -0500 Subject: [PATCH] Remove unnecessary __init__.py files --- sdkbuild/python.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sdkbuild/python.go b/sdkbuild/python.go index 67c4d0a0..5f3eb88e 100644 --- a/sdkbuild/python.go +++ b/sdkbuild/python.go @@ -123,10 +123,6 @@ requires-python = "~=3.10" // Create __init__.py files in feature directories to make them proper Python packages if _, err := os.Stat(filepath.Join(dir, "../features")); err == nil { - if err := executeCommand("find", "../features", "-type", "d", "-exec", "touch", "{}/__init__.py", ";"); err != nil { - return nil, fmt.Errorf("failed creating __init__.py files: %w", err) - } - if err := executeCommand("uv", "run", "mypy", "--explicit-package-bases", "../features"); err != nil { return nil, fmt.Errorf("failed type checking: %w", err) }