Skip to content

Commit

Permalink
Merge pull request #108 from dihm/get_shot_globals_depbreak
Browse files Browse the repository at this point in the history
Get shot globals dependency break
  • Loading branch information
dihm authored Jan 19, 2024
2 parents 019dc2d + 33871e1 commit a175d26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions labscript_devices/FunctionRunner/blacs_workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
from time import monotonic
import numpy as np
import labscript_utils.h5_lock
from labscript_utils.shot_utils import get_shot_globals
import h5py
from blacs.tab_base_classes import Worker
import runmanager
import runmanager.remote
from zprocess import rich_print
from .utils import deserialise_function
Expand Down Expand Up @@ -48,7 +48,7 @@ class ShotContext(object):
def __init__(self, h5_file, device_name):
self.h5_file = h5_file
self.device_name = device_name
self.globals = runmanager.get_shot_globals(h5_file)
self.globals = get_shot_globals(h5_file)


class FunctionRunnerWorker(Worker):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install_requires =
runmanager>=3.0.0
importlib_metadata
labscript>=3.0.0
labscript_utils>=3.0.0
labscript_utils>=3.3.0
numpy>=1.15.1
pillow
tqdm
Expand Down

0 comments on commit a175d26

Please sign in to comment.