Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand All @@ -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"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ P00661C:
Unknown1:
name: Unknown1
system: geds
location:
location:
string: 1
position: 2
daq:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ V03422:
Unknown1:
name: Unknown1
system: geds
location:
location:
string: 1
position: 2
daq:
Expand Down
6 changes: 4 additions & 2 deletions workflow/src/legenddataflow/scripts/tier/raw_mgdo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down