Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Oct 22, 2024
1 parent 84f2268 commit a762b1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion artisatomic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def get_ion_handlers() -> list[tuple[int, list[int | tuple[int, str]]]]:
print(f"Reading {inputhandlersfile}")
return json.load(inputhandlersfile.open(encoding="utf-8"))

ion_handlers: list[tuple[int, list[int | tuple[int, str]]]] = [
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]),
Expand Down

0 comments on commit a762b1f

Please sign in to comment.