Skip to content

Commit 7b37ed8

Browse files
bokelleyclaude
andcommitted
Fix import formatting in aliases.py for linter
Ruff I001 rule requires imports to be properly sorted. PropertyId and PropertyTag were at the end of the import block but should be alphabetically positioned. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 720ee49 commit 7b37ed8

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/adcp/types/aliases.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868
PreviewRender1,
6969
PreviewRender2,
7070
PreviewRender3,
71+
# Publisher properties types
72+
PropertyId,
73+
PropertyTag,
7174
# Performance feedback responses
7275
ProvidePerformanceFeedbackResponse1,
7376
ProvidePerformanceFeedbackResponse2,
@@ -86,11 +89,7 @@
8689
# VAST assets
8790
VastAsset1,
8891
VastAsset2,
89-
# Publisher properties types
90-
PropertyId,
91-
PropertyTag,
9292
)
93-
9493
from adcp.types._generated import (
9594
PublisherPropertySelector1 as PublisherPropertiesInternal,
9695
)

0 commit comments

Comments
 (0)