Skip to content
Snippets Groups Projects
Commit 92513c23 authored by Jan David Mol's avatar Jan David Mol
Browse files

black

parent 8de97a40
No related branches found
No related tags found
1 merge request!1081L2SS-2212 L2SS-2296: Fix FPGA addresses in CDB files, add deployment mechanism
Pipeline #114742 failed
Pipeline: tango

#114743

    ......@@ -81,12 +81,12 @@ class LOFAR2CalTables:
    calvalues_y = lofar1_caltable_data[:, antenna_nr * 2 + 1]
    # validate
    assert len(calvalues_x) == 512, (
    "Expected calibration values for 512 subbands"
    )
    assert len(calvalues_y) == 512, (
    "Expected calibration values for 512 subbands"
    )
    assert (
    len(calvalues_x) == 512
    ), "Expected calibration values for 512 subbands"
    assert (
    len(calvalues_y) == 512
    ), "Expected calibration values for 512 subbands"
    # write to LOFAR2
    table.antennas[f"{antenna_name_prefix}{antenna_nr:02}"] = (
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment