diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 15f7b0a..85dec0b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Get dependencies and install legend-dataflow @@ -52,7 +52,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -66,7 +66,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 2 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.12" diff --git a/inputs/hardware/configuration/channelmaps/sp02-p%-r%-T%-all-config.yaml b/inputs/hardware/configuration/channelmaps/sp02-p%-r%-T%-all-config.yaml index 24d0104..f745d1c 100644 --- a/inputs/hardware/configuration/channelmaps/sp02-p%-r%-T%-all-config.yaml +++ b/inputs/hardware/configuration/channelmaps/sp02-p%-r%-T%-all-config.yaml @@ -11,7 +11,7 @@ P00661C: Unknown1: name: Unknown1 system: geds - location: + location: string: 1 position: 2 daq: diff --git a/inputs/hardware/configuration/channelmaps/sp03-p%-r%-T%-all-config.yaml b/inputs/hardware/configuration/channelmaps/sp03-p%-r%-T%-all-config.yaml index def05b0..4d433af 100644 --- a/inputs/hardware/configuration/channelmaps/sp03-p%-r%-T%-all-config.yaml +++ b/inputs/hardware/configuration/channelmaps/sp03-p%-r%-T%-all-config.yaml @@ -11,7 +11,7 @@ V03422: Unknown1: name: Unknown1 system: geds - location: + location: string: 1 position: 2 daq: diff --git a/workflow/src/legenddataflow/scripts/tier/raw_mgdo.py b/workflow/src/legenddataflow/scripts/tier/raw_mgdo.py index d5491ed..0859428 100644 --- a/workflow/src/legenddataflow/scripts/tier/raw_mgdo.py +++ b/workflow/src/legenddataflow/scripts/tier/raw_mgdo.py @@ -74,8 +74,10 @@ def build_tier_raw_mgdo() -> None: # insert it in our dictionary if struckid not in chmap: - raise RuntimeError(f"struckid {struckid} not specified in " - "channel map but present in data.") + raise RuntimeError( + f"struckid {struckid} not specified in " + "channel map but present in data." + ) data_dict[_tblid(chmap[struckid].daq.rawid)] = tbl if any(ch not in found_struckids for ch in chmap):