Skip to content

Commit 0b0f4cc

Browse files
committed
Update pylint + isort
Pylint only supports isort 6+ starting with version 3.3.4 Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent eeb88d9 commit 0b0f4cc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dev-flake8 = [
6262
"pydoclint == 0.6.0",
6363
"pydocstyle == 6.3.0",
6464
]
65-
dev-formatting = ["black == 25.1.0", "isort == 6.0.0"]
65+
dev-formatting = ["black == 25.1.0", "isort == 6.0.1"]
6666
dev-mkdocs = [
6767
"black == 25.1.0",
6868
"Markdown==3.7",

src/frequenz/client/dispatch/_internal_types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
from frequenz.api.dispatch.v1.dispatch_pb2 import (
1313
CreateMicrogridDispatchRequest as PBDispatchCreateRequest,
1414
)
15-
from frequenz.api.dispatch.v1.dispatch_pb2 import DispatchData
15+
from frequenz.api.dispatch.v1.dispatch_pb2 import (
16+
DispatchData,
17+
)
1618
from google.protobuf.json_format import MessageToDict
1719
from google.protobuf.struct_pb2 import Struct
1820
from google.protobuf.timestamp_pb2 import Timestamp

0 commit comments

Comments
 (0)