File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
python/lsst/ts/mtreflector Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,3 @@ towncrier.toml
36
36
37
37
# VsCode
38
38
* .vscode
39
- .flake8
40
- .isort.cfg
41
- .mypy.ini
42
- .ruff.toml
Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ async def handle_summary_state(self) -> None:
110
110
Raises
111
111
------
112
112
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.
115
115
"""
116
116
if self .disabled_or_enabled :
117
117
if self .should_be_connected and not self .controller_connected :
@@ -148,9 +148,9 @@ async def connect(self) -> None:
148
148
Raises
149
149
------
150
150
RuntimeError
151
- If there is no MTReflectorController object
151
+ If there is no MTReflectorController object.
152
152
asyncio.TimeoutError
153
- If it takes longer than self.config.reflector.connect_timeout
153
+ If it takes longer than self.config.reflector.connect_timeout.
154
154
"""
155
155
if self .reflector_controller is None :
156
156
raise RuntimeError (
You can’t perform that action at this time.
0 commit comments