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 skills/php-modernization/scripts/introspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Sibling-import the shared module. PEP 723 scripts launched via `uv run`
# don't add their own directory to sys.path, so we add it explicitly.
sys.path.insert(0, str(Path(__file__).resolve().parent))
from _common import ( # noqa: E402
from _common import (
SCHEMA_VERSION,
SKILL_ID,
composer_dep_mentions,
Expand Down
2 changes: 1 addition & 1 deletion skills/php-modernization/scripts/modernize_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import subprocess
import sys
import time
from collections.abc import Iterable
from dataclasses import asdict, dataclass, field
from pathlib import Path
from typing import Iterable

SCHEMA_VERSION = "1.0.0"
ARTIFACT_DIR = Path(".build/php-modernization")
Expand Down
5 changes: 3 additions & 2 deletions skills/php-modernization/scripts/verify_php_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@
import subprocess
import sys
import xml.etree.ElementTree as ET
from collections.abc import Iterable
from dataclasses import asdict, dataclass, field
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Iterable
from typing import Any

# Sibling-import the shared module. PEP 723 scripts launched via `uv run`
# don't add their own directory to sys.path, so we add it explicitly.
sys.path.insert(0, str(Path(__file__).resolve().parent))
from _common import ( # noqa: E402
from _common import (
SCHEMA_VERSION,
SKILL_ID,
SKILL_VERSION,
Expand Down
Loading