Skip to content

Commit cb30a43

Browse files
committed
Formatting clean-up
1 parent 5cd625e commit cb30a43

3 files changed

Lines changed: 116 additions & 120 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,4 @@ marimo/_lsp/
207207
__marimo__/
208208

209209
# VSCode
210-
.vscode/
210+
.vscode/

bs120xenet/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@
66
"""
77
BS120x Ethernet client module.
88
9-
The ''bs120xenet'' module provides an Ethernet client for communicating with a
9+
The ``bs120xenet`` module provides an Ethernet client for communicating with a
1010
Bloomy Controls BS120x-series battery simulator over TCP and UDP.
1111
"""
1212

1313
__version__ = "1.0.0"
1414

1515
__all__ = [
16-
"Bs120xOpModeConfig",
17-
"Bs120xStatus",
18-
"Bs120xUnitConfig",
19-
"Bs120xEnetError",
16+
"Bs120xOpModeConfig",
17+
"Bs120xStatus",
18+
"Bs120xUnitConfig",
19+
"Bs120xEnetError",
2020
"Bs120xEnet"
2121
]
2222

2323
from .client import(
24-
Bs120xOpModeConfig,
25-
Bs120xStatus,
26-
Bs120xUnitConfig,
27-
Bs120xEnetError,
24+
Bs120xOpModeConfig,
25+
Bs120xStatus,
26+
Bs120xUnitConfig,
27+
Bs120xEnetError,
2828
Bs120xEnet
2929
)

0 commit comments

Comments
 (0)