We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7c9c51 commit 3dc3b67Copy full SHA for 3dc3b67
pyproject.toml
@@ -33,6 +33,7 @@ dependencies = [
33
"redis",
34
"deepdiff",
35
"scanspec>=0.7.3",
36
+ "event-model>=1.23", # Until bluesky pins it https://github.com/DiamondLightSource/dodal/issues/1278
37
]
38
39
dynamic = ["version"]
src/dodal/devices/i22/nxsas.py
@@ -38,7 +38,7 @@ def datakey(value) -> DataKey:
if isinstance(value, tuple):
return {"units": value[1], **datakey(value[0])}
40
dtype = "string"
41
- shape = []
+ shape: list[int | None] = []
42
match value:
43
case bool():
44
dtype = "boolean"
0 commit comments