Skip to content

Commit

Permalink
Supress mypy error re. scipy
Browse files Browse the repository at this point in the history
Scipy does not seem to have any typing. As I add type hints
to the code, I ought to create stubs for the one scipy function
I use.
  • Loading branch information
andreww committed Apr 12, 2024
1 parent c79a58c commit e4ac6b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion earth_model/earth_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

import numpy as np
import scipy.integrate as spint
import scipy.integrate as spint # type: ignore

from . import peice_poly as pp

Expand Down

0 comments on commit e4ac6b5

Please sign in to comment.