Skip to content

Commit

Permalink
chore: removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Teranis committed Feb 13, 2025
1 parent dd229b8 commit 48436c7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion cellacdc/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,6 @@ def combineWorkerAskLoadFluoChannels(self, requ_channels, pos_i):
pos_i = [pos_i]

for i in pos_i:
print(i)
self.getChData(requ_ch=requ_channels, pos_i=i)
self.combineWorker.wake_waitCondLoadFluoChannels()

Expand Down
2 changes: 0 additions & 2 deletions cellacdc/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5640,7 +5640,6 @@ def run(self):
elif len(self.dataQ) > 0:
data, steps, key, keep_input_data_type = self.dataQ.pop()
requ_steps, pos_i = self.requiredChannels(steps, key[0])
printl(requ_steps, pos_i)
self.emitsigAskLoadFluoChannels(requ_steps, pos_i)
output_imgs, out_keys = self.applySteps(data, steps, keep_input_data_type, key)
self.sigPreviewDone.emit(output_imgs, out_keys)
Expand All @@ -5650,7 +5649,6 @@ def run(self):
else:
self.logger.log('Combining channels worker resumed.')
requ_steps, pos_i = self.requiredChannels()
printl(requ_steps, pos_i)
self.emitsigAskLoadFluoChannels(requ_steps, pos_i)
output_imgs, out_keys = self.runJob()
self.sigDone.emit(output_imgs, out_keys)
Expand Down

0 comments on commit 48436c7

Please sign in to comment.