Skip to content

Commit 3e69703

Browse files
committed
fix: sort import block to satisfy ruff isort (I001)
Move `from vss_tools.datatypes import Datatypes` before `from vss_tools.main import get_trees` — alphabetical within the vss_tools.* group as required by ruff/isort. Co-Authored-By: Claude and aki1770-del <aki1770@gmail.com>
1 parent 4c8887d commit 3e69703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vss_tools/exporters/protobuf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
import vss_tools.cli_options as clo
2020
from vss_tools import log
21+
from vss_tools.datatypes import Datatypes
2122
from vss_tools.main import get_trees
2223
from vss_tools.model import (
2324
VSSData,
2425
VSSDataBranch,
2526
VSSDataDatatype,
2627
VSSDataStruct,
2728
)
28-
from vss_tools.datatypes import Datatypes
2929
from vss_tools.tree import VSSNode
3030

3131
PATH_DELIMITER = "."

0 commit comments

Comments
 (0)