Skip to content

Commit

Permalink
fix blob import
Browse files Browse the repository at this point in the history
  • Loading branch information
saadati944 committed Jan 12, 2021
1 parent 401e5ef commit e1dabf3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beadfinder.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import sys
from stdlibrary import picture, color
import blob


class BeadFinder:
Expand Down Expand Up @@ -105,7 +106,7 @@ def __findBeads(self):
continue

# detect new blob and add it to blobs list
new_blob = Blob()
new_blob = blob.Blob()
self.__detect_blob(new_blob, x, y)
self.blobs.append(new_blob)
last_pixel_was_white = True
Expand Down

0 comments on commit e1dabf3

Please sign in to comment.