diff options
Diffstat (limited to 'runner/python/indexer.go')
| -rw-r--r-- | runner/python/indexer.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runner/python/indexer.go b/runner/python/indexer.go index d0dd4e3..3a61f7e 100644 --- a/runner/python/indexer.go +++ b/runner/python/indexer.go @@ -8,7 +8,7 @@ import ( "pik/model" ) -type Pyproj struct { +type pyproj struct { Project struct { Scripts map[string]string } @@ -29,7 +29,7 @@ func (p python) Index(path string, f fs.FS, runners []model.Runner) ([]model.Tar return nil, err } - pp := &Pyproj{} + pp := &pyproj{} err = toml.Unmarshal(content, pp) if err != nil { |
