Skip to content

Commit

Permalink
Fix redundant brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
kjsanger committed Nov 7, 2024
1 parent 80526ea commit 1fbf787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npg_notify/ont/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def body(self, studies: list[Study]) -> str:
"flowcell_id": self.flowcell_id,
"path": self.path,
"event": self.event,
"studies": "\n".join([*study_descs]),
"studies": "\n".join(study_descs),
}
)

Expand Down

0 comments on commit 1fbf787

Please sign in to comment.