Skip to content

Commit 7a78f94

Browse files
committed
Shortened explanatory comments
1 parent fa0ae82 commit 7a78f94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/murfey/client/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, name: str, acquisition_software: str):
4141
self.name = name
4242

4343
def post_transfer(self, transferred_file: Path, role: str = "", **kwargs):
44-
# Search other packages in this environment for additional hooks to include in Murfey
44+
# Search external packages for additional hooks to include in Murfey
4545
for h in entry_points(group="murfey.post_transfer_hooks"):
4646
if h.name == self.name:
4747
h.load()(transferred_file, role=role, **kwargs)

src/murfey/server/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ class Settings(BaseSettings):
7676
app.include_router(murfey.server.api.hub.router)
7777
app.include_router(murfey.server.websocket.ws)
7878

79-
# Search other packages in this environment for additional routers to include in Murfey
79+
# Search external packages for additional routers to include in Murfey
8080
for r in entry_points(group="murfey.routers"):
8181
app.include_router(r.load())

0 commit comments

Comments
 (0)