Skip to content

Commit c52a66d

Browse files
committed
blackened
1 parent 6819f23 commit c52a66d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/labthings/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def get_docstring(obj: Any, remove_newlines=True) -> str:
158158
if remove_newlines:
159159
stripped = [line.strip() for line in ds.splitlines() if line]
160160
return " ".join(stripped).replace("\n", " ").replace("\r", "")
161-
return inspect.cleandoc(ds) # Strip spurious indentation/newlines
161+
return inspect.cleandoc(ds) # Strip spurious indentation/newlines
162162

163163

164164
def get_summary(obj: Any) -> str:

src/labthings/views/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def get(cls):
173173
"""
174174
List running and completed actions.
175175
176-
Actions are run with `POST` requests. See the `POST` method for this URL for
176+
Actions are run with `POST` requests. See the `POST` method for this URL for
177177
details of the action. Sending a `GET` request to an action endpoint will return
178178
action descriptions for each time the action has been run, including whether they
179179
have completed, and any return values.

0 commit comments

Comments
 (0)