Skip to content

Commit

Permalink
Fix unspported left operand error
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmlft committed Dec 4, 2023
1 parent 333a33e commit ee30a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pixl_ehr/src/pixl_ehr/_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def from_message(cls, message_body: bytes) -> "PatientEHRData":
def update_using(self, pipeline: "ProcessingPipeline") -> None:
"""Update these data using a processing pipeline"""
for i, step in enumerate(pipeline.steps):
logger.debug("Step %s", [{i} / {len(pipeline.steps) - 1}])
logger.debug("Step %s", [i / len(pipeline.steps) - 1])

try:
step.update(self)
Expand Down

0 comments on commit ee30a89

Please sign in to comment.