File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66from more_itertools import first_true
77
88from .impl import (
9- VERSIONED_SUBLIME_TEXT_DEV_ENVIRONMENT_HANDLERS ,
109 BlenderDevEnvironmentHandler ,
1110 GdbDevEnvironmentHandler ,
1211 SublimeTextDevEnvironmentHandler ,
12+ VERSIONED_SUBLIME_TEXT_DEV_ENVIRONMENT_HANDLERS ,
1313)
1414from .interfaces import BaseDevEnvironmentHandler
1515
Original file line number Diff line number Diff line change 22
33from .blender import BlenderDevEnvironmentHandler
44from .gdb import GdbDevEnvironmentHandler
5- from .sublime_text import VERSIONED_SUBLIME_TEXT_DEV_ENVIRONMENT_HANDLERS , SublimeTextDevEnvironmentHandler
5+ from .sublime_text import SublimeTextDevEnvironmentHandler , VERSIONED_SUBLIME_TEXT_DEV_ENVIRONMENT_HANDLERS
66
77__all__ = (
88 "BlenderDevEnvironmentHandler" ,
Original file line number Diff line number Diff line change @@ -71,3 +71,9 @@ ignore = ["E203"]
7171
7272[tool .ruff .lint .per-file-ignores ]
7373"boot.py" = [" E402" ]
74+
75+ [tool .ruff .lint .isort ]
76+ case-sensitive = true
77+ combine-as-imports = true
78+ order-by-type = false
79+ required-imports = [" from __future__ import annotations" ]
You can’t perform that action at this time.
0 commit comments