Skip to content

Commit

Permalink
Merge pull request #24 from jasondet/main
Browse files Browse the repository at this point in the history
fix SIS key lists
  • Loading branch information
jasondet authored Dec 24, 2023
2 parents 8566473 + 809e19d commit 38e4b96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/daq2lh5/orca/orca_digitizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ def set_header(self, header: OrcaHeader) -> None:
sys.exit()
self.decoded_values[ccc]["waveform"]["wf_len"] = trace_length

def get_key_lists(self) -> list[list[str]]:
def get_key_lists(self) -> list[list[int]]:
key_lists = []
for key in self.decoded_values.keys():
key_lists.append([key])
return [key_lists]
return key_lists

def get_decoded_values(self, key: int = None) -> dict[str, Any]:
if key is None:
Expand Down

0 comments on commit 38e4b96

Please sign in to comment.