fix: remove unused variable in test_loop_guard_seed (ruff F841) (#1255)
Some checks failed
Tests / lint (push) Has been cancelled
Tests / test (push) Has been cancelled
Tests / lint (pull_request) Failing after 33s
Tests / test (pull_request) Has been skipped

This commit was merged in pull request #1255.
This commit is contained in:
2026-03-24 01:20:42 +00:00
parent 2240ddb632
commit b7ad5bf1d9

View File

@@ -67,7 +67,6 @@ def test_seed_oserror_is_graceful(tmp_path, monkeypatch, capsys):
monkeypatch.setattr(lg, "CYCLE_RESULT_FILE", tmp_path / "no_dir" / "cycle_result.json")
from pathlib import Path
original_mkdir = Path.mkdir
def failing_mkdir(self, *args, **kwargs):
raise OSError("no space left")