Skip to content
Snippets Groups Projects

[AGIPD][TESTs]test_agipdlib AGIPDCtrl and get_bias_voltage for AGIPD1M and AGIPD500K

Merged Karim Ahmed requested to merge test/test_agipdlib into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -617,7 +617,7 @@ async def wait_on_transfer(
async def wait_transfers(
mdc: MetadataClient,
runs: List[int],
runs: List[str],
proposal: str,
cycle: int,
instrument: str,
@@ -638,7 +638,7 @@ async def wait_transfers(
coros = []
for run in runs:
run_dir = (in_folder / f"r{run:04d}")
run_dir = (in_folder / f"r{int(run):04d}")
coros.append(wait_on_transfer(mdc, run, proposal, run_dir))
try:
Loading