From e7ea9d15e0a0540a021587d3e148b1b66f7e59b5 Mon Sep 17 00:00:00 2001 From: jared randall <> Date: Fri, 31 Oct 2025 14:24:47 -0700 Subject: [PATCH] Fix: Remove poetry dependency from s2train.py shebang Changed shebang from 'poetry run python' to 'python3' to allow the script to work with venv without requiring poetry. --- src/s2train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s2train.py b/src/s2train.py index dcd1a80..cc68053 100755 --- a/src/s2train.py +++ b/src/s2train.py @@ -1,4 +1,4 @@ -#!/usr/bin/env -S poetry run python +#!/usr/bin/env python3 """Submits frames to a Groundlight detector for training. By default, waits for confident answers, which generally means human review. All is done in diversity order, so the frames are spread out.