Skip to content

Commit

Permalink
Fix the order of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizu committed Sep 2, 2020
1 parent b4400aa commit 6671e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scopyon/analysis/spot_detection.py
Expand Up @@ -163,7 +163,7 @@ def spot_detection(data, roi_size=6, blobs=None, processes=None, **kwargs):
else:
spots = []
for blob in blobs:
spot = __spot_detection(data, roi_size, blob)
spot = __spot_detection(blob, data, roi_size)
if isinstance(spot, LoggingMessage):
_log.log(spot.level, spot.message)
else:
Expand Down

0 comments on commit 6671e59

Please sign in to comment.