Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Dec 17, 2024
1 parent 3f181b4 commit 5799b1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions artisatomic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ def get_ion_handlers() -> list[tuple[int, list[int | tuple[int, str]]]]:
return json.load(inputhandlersfile.open(encoding="utf-8"))

ion_handlers: list[tuple[int, list[int | tuple[int, str]]]] = []
# ion_handlers = [
# (26, [1, 2, 3, 4, 5]),
# (27, [2, 3, 4]),
# (28, [2, 3, 4, 5]),
# ]
ion_handlers = [
(26, [1, 2, 3, 4, 5]),
(27, [2, 3, 4]),
(28, [2, 3, 4, 5]),
]

# ion_handlers = [
# (2, [(3, "boyle")]),
Expand All @@ -99,7 +99,7 @@ def get_ion_handlers() -> list[tuple[int, list[int | tuple[int, str]]]]:
# ion_handlers = readcarsusdata.extend_ion_list(ion_handlers)
# ion_handlers = readdreamdata.extend_ion_list(ion_handlers)
# ion_handlers = readfacdata.extend_ion_list(ion_handlers)
ion_handlers = readfloers25data.extend_ion_list(ion_handlers, calibrated=True)
# ion_handlers = readfloers25data.extend_ion_list(ion_handlers, calibrated=True)
# ion_handlers = readtanakajpltdata.extend_ion_list(ion_handlers)
# ion_handlers = groundstatesonlynist.extend_ion_list(ion_handlers)

Expand Down

0 comments on commit 5799b1f

Please sign in to comment.