Skip to content

Commit 42c2a43

Browse files
committed
pvvalue fix simulation_impl
1 parent 311d321 commit 42c2a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/genie_python/genie_simulate_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ def get_block_data(self, block: str, fail_fast: bool = False) -> dict():
11961196
def get_pv_from_block(self, block_name: str) -> str:
11971197
return block_name
11981198

1199-
def set_multiple_blocks(self, names: list[str], values: list[PVValue]) -> None:
1199+
def set_multiple_blocks(self, names: list[str], values: list["PVValue"]) -> None:
12001200
temp = list(zip(names, values))
12011201
for name, value in temp:
12021202
if name in self.block_dict:

0 commit comments

Comments
 (0)