Skip to content

Commit

Permalink
unit test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed Mar 24, 2024
1 parent 84e504e commit 5a90f8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/graphnet/data/extractors/combine_extractors.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
"""Module for combining multiple extractors into a single extractor."""
from typing import TYPE_CHECKING

from graphnet.utilities.imports import has_icecube_package
from graphnet.data.extractors.icecube.i3extractor import I3Extractor
from typing import List, Dict

from icecube import icetray
if has_icecube_package() or TYPE_CHECKING:
from icecube import icetray # pyright: reportMissingImports=false


class CombinedExtractor(I3Extractor):
Expand Down

0 comments on commit 5a90f8b

Please sign in to comment.