From e8b9ca135642c76000bc0ec2e78674c602a748dd Mon Sep 17 00:00:00 2001 From: ewy Date: Sat, 2 May 2026 18:28:40 +0200 Subject: add .js and .ts support also: remove unused/duplicate method runner.Hydrate --- runner/python/runner.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'runner/python/runner.go') diff --git a/runner/python/runner.go b/runner/python/runner.go index 6aa6017..8d03f52 100644 --- a/runner/python/runner.go +++ b/runner/python/runner.go @@ -30,11 +30,6 @@ func (p python) Init() error { return err } -func (p python) Hydrate(target model.Target) (model.HydratedTarget, error) { - //TODO implement me - panic("implement me") -} - func (p python) Wants(fs fs.FS, file string, entry fs.DirEntry) (bool, error) { return !entry.IsDir() && filepath.Ext(entry.Name()) == ".py", nil } -- cgit v1.3.1