Skip to content

Commit e5e4506

Browse files
committed
Updated tomo picking workflow to return a dict instead of a boolean
1 parent 005f2c6 commit e5e4506

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/workflows/tomo/picking.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,6 @@ def _register_picked_tomogram_use_diameter(message: dict, murfey_db: Session):
205205
murfey_db.close()
206206

207207

208-
def picked_tomogram(message: dict, murfey_db: Session) -> bool:
208+
def picked_tomogram(message: dict, murfey_db: Session) -> dict[str, bool]:
209209
_register_picked_tomogram_use_diameter(message, murfey_db)
210-
return True
210+
return {"success": True}

0 commit comments

Comments
 (0)