Skip to content

Commit f42ee2e

Browse files
committed
fixup! Use labjack-ljm directly.
1 parent 3e33f1e commit f42ee2e

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,3 @@ towncrier.toml
3636

3737
# VsCode
3838
*.vscode
39-
.flake8
40-
.isort.cfg
41-
.mypy.ini
42-
.ruff.toml

python/lsst/ts/mtreflector/csc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ async def handle_summary_state(self) -> None:
110110
Raises
111111
------
112112
ValueError
113-
If config is None
114-
If reflector Controller should be connected but isn't
113+
If config is None.
114+
If reflector Controller should be connected but isn't.
115115
"""
116116
if self.disabled_or_enabled:
117117
if self.should_be_connected and not self.controller_connected:
@@ -148,9 +148,9 @@ async def connect(self) -> None:
148148
Raises
149149
------
150150
RuntimeError
151-
If there is no MTReflectorController object
151+
If there is no MTReflectorController object.
152152
asyncio.TimeoutError
153-
If it takes longer than self.config.reflector.connect_timeout
153+
If it takes longer than self.config.reflector.connect_timeout.
154154
"""
155155
if self.reflector_controller is None:
156156
raise RuntimeError(

0 commit comments

Comments
 (0)