Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/vig-utils/tests/test_claude_ssot.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_no_tracked_file_references_cursor_skills() -> None:
path = REPO_ROOT / rel
try:
text = path.read_text(encoding="utf-8")
except (UnicodeDecodeError, FileNotFoundError):
except UnicodeDecodeError, FileNotFoundError:
continue
if ".cursor/skills/" in text:
offenders.append(rel)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ vig-utils = { path = "packages/vig-utils", editable = true }
# Black-compatible line length
line-length = 88

# Target Python 3.12
target-version = "py312"
# Target Python 3.14
target-version = "py314"

[tool.ruff.lint]

Expand Down
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def is_running_in_container() -> bool:
try:
with Path("/proc/1/cgroup").open() as f:
return "docker" in f.read() or "podman" in f.read()
except (FileNotFoundError, PermissionError):
except FileNotFoundError, PermissionError:
pass
return False

Expand Down Expand Up @@ -1006,7 +1006,7 @@ def devcontainer_with_sidecar(initialized_workspace, sidecar_image, container_ta
parts = error_message.split("Command failed:")
if len(parts) > 1:
podman_command = parts[1].strip()
except (json.JSONDecodeError, KeyError):
except json.JSONDecodeError, KeyError:
pass

# Extract actual podman error from stderr
Expand Down
Loading