Summary
import os on line 15 of cli.py is never used. ruff check reports it as F401.
src/harnessbench/cli.py:15:8 F401 `os` imported but unused
Fix
Remove line 15:
# delete this line
import os
Fixable automatically with:
ruff check --fix src/harnessbench/cli.py
Affected file
src/harnessbench/cli.py, line 15
Summary
import oson line 15 ofcli.pyis never used.ruff checkreports it as F401.Fix
Remove line 15:
Fixable automatically with:
Affected file
src/harnessbench/cli.py, line 15