Skip to content
Snippets Groups Projects

Fixed input variables of BERT Celery task

Merged Marianna Glazewska requested to merge bert_minorchannelfix into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -226,7 +226,7 @@ def configureAllTask():
@celery.task()
def BERT_Task(optoboardPosition, device, channel, meastime):
BERT_result = eval('optoboard_dic["' + optoboardPosition + '"].' + device).bert(channel + 1, 6, meastime)
BERT_result = eval('optoboard_dic["' + optoboardPosition + '"].' + device).bert(channel, 6, meastime)
return BERT_result
@celery.task()
Loading