Skip to content

Commit

Permalink
tuple -> Tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed Dec 18, 2024
1 parent 6dafafd commit 14e97b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphnet/data/extractors/icecube/i3totaleextractor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Extract all the visible particles entering the volume."""

from typing import Dict, Any, List, TYPE_CHECKING
from typing import Dict, Any, List, TYPE_CHECKING, Tuple

from .utilities.gcd_hull import GCD_hull
from .i3extractor import I3Extractor
Expand Down Expand Up @@ -121,7 +121,7 @@ def total_track_energy(

def total_cascade_energy(
self, frame: "icetray.I3Frame", checked_id_list: List = []
) -> tuple[int, int, Any]:
) -> Tuple[int, int, Any]:
"""Get the total energy of cascade particles on entrance."""
e_entrance = 0
e_deposited = 0
Expand Down

0 comments on commit 14e97b5

Please sign in to comment.