Skip to content

Commit e72280e

Browse files
fix(models): sort imports for ruff I001 in models package
1 parent 0269b8c commit e72280e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
from models.errors import ErrorResponse
44
from models.export import ExportStateDict
55
from models.project import ProjectDict, ProjectSessionRowDict, SessionListItemDict
6-
from models.search import SearchHitDict
76
from models.record_data import RecordDataUnion
7+
from models.search import SearchHitDict
88
from models.session import (
99
MessageDict,
1010
QuickSessionInfoDict,
1111
SessionDict,
1212
SessionMetadataDict,
1313
ToolUseDict,
1414
)
15-
from models.tool_results import ToolResultUnion
1615
from models.stats import FilesTouchedDict, SessionStatsDict
16+
from models.tool_results import ToolResultUnion
1717

1818
__all__ = [
1919
"ErrorResponse",

models/record_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""TypedDict shapes for record-level ``data`` payloads on progress messages."""
22

3-
from typing import Literal, TypeGuard, TypedDict
3+
from typing import Literal, TypedDict, TypeGuard
44

55

66
class BashProgressDataDict(TypedDict):

models/tool_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
and utils/tool_dispatch.py predicate order (first match wins).
55
"""
66

7-
from typing import Literal, TypeGuard, TypedDict
7+
from typing import Literal, TypedDict, TypeGuard
88

99

1010
class BashToolResultDict(TypedDict, total=False):

0 commit comments

Comments
 (0)