Skip to content

Commit 8368360

Browse files
committed
Sequence object should be able to be appended in-place
1 parent d5f70d6 commit 8368360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/workflows/spa/picking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def _check_notifications(message: dict, murfey_db: Session) -> None:
365365
if len(param_values) >= 25:
366366
param_value_to_drop = param_values[0]
367367
param_values = param_values[1:]
368-
param_values = param_values.append(
368+
param_values.append(
369369
NotificationValue(
370370
notification_parameter_id=param.id,
371371
index=param_values[-1].index + 1,

0 commit comments

Comments
 (0)