Skip to content

Commit

Permalink
dataclasses missing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed Dec 18, 2024
1 parent 0baa572 commit 79dc6bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Dict, Any, List, TYPE_CHECKING

from .utilities.gcd_hull import GCD_hull

from .i3extractor import I3Extractor

import numpy as np
Expand All @@ -15,6 +15,7 @@
dataclasses,
MuonGun,
) # pyright: reportMissingImports=false
from .utilities.gcd_hull import GCD_hull


class I3HighestEparticleExtractor(I3Extractor):
Expand Down
3 changes: 2 additions & 1 deletion src/graphnet/data/extractors/icecube/i3totaleextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Dict, Any, List, TYPE_CHECKING

from .utilities.gcd_hull import GCD_hull

from .i3extractor import I3Extractor

import numpy as np
Expand All @@ -15,6 +15,7 @@
dataclasses,
MuonGun,
) # pyright: reportMissingImports=false
from .utilities.gcd_hull import GCD_hull


class I3TotalEExtractor(I3Extractor):
Expand Down

0 comments on commit 79dc6bc

Please sign in to comment.