Skip to content

Commit

Permalink
Fix check types
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson committed Dec 19, 2024
1 parent 2fe42be commit 012d590
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/stcal/skymatch/skyimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
import tempfile

import numpy as np
from spherical_geometry.polygon import SphericalPolygon
from spherical_geometry.polygon import SphericalPolygon # type: ignore[import-untyped]

from . import region
from .skystatistics import SkyStats
from .skystatistics import SkyStats # type: ignore[import-untyped]

__all__ = [
"SkyImage",
Expand Down
2 changes: 1 addition & 1 deletion src/stcal/skymatch/skystatistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from copy import deepcopy

# THIRD PARTY
from stsci.imagestats import ImageStats
from stsci.imagestats import ImageStats # type: ignore[import-untyped]

__all__ = ["SkyStats"]

Expand Down

0 comments on commit 012d590

Please sign in to comment.