Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Samartsev committed Dec 20, 2023
1 parent 3bade1f commit bdee039
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pymepix/processing/baseacquisition.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class AcquisitionStage(Logger):
------------
stage: int
Initial position in the pipeline, lower stages are executed first
"""

def __init__(self, stage, num_processes=1):
Expand Down Expand Up @@ -142,7 +141,7 @@ def build(self, input_queue=None, output_queue=None, file_writer=None):
self.debug("I am creating the queue")
self._output_queue = Queue()
else:
self.debug("Recieved the queue {}".format(output_queue))
self.debug("Received the queue {}".format(output_queue))
self.debug("Building stage {} ".format(self._stage_number))
self.info("Creating {} processes".format(self._num_processes))
for n in range(self._num_processes):
Expand Down
2 changes: 1 addition & 1 deletion pymepix/processing/pipeline_centroid_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@


class PipelineCentroidCalculator(BasePipelineObject):
"""Performs centroiding on EventData recieved from Packet processor"""
"""Performs centroiding on EventData received from Packet processor"""

def __init__(
self,
Expand Down

0 comments on commit bdee039

Please sign in to comment.