Skip to content

Commit

Permalink
Ignore abstract-method pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler committed Oct 19, 2021
1 parent f302482 commit 85e15e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions harmonica/equivalent_sources/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def scatter(
data_names=None,
projection=None,
**kwargs,
):
): # pylint: disable=abstract-method
"""
.. warning ::
Expand All @@ -416,7 +416,7 @@ def profile(
data_names=None,
projection=None,
**kwargs,
): # pylint: disable=arguments-differ
): # pylint: disable=arguments-differ,abstract-method
"""
Interpolate data along a profile between two points.
Expand Down
4 changes: 2 additions & 2 deletions harmonica/equivalent_sources/spherical.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def scatter(
data_names=None,
projection=None,
**kwargs,
):
): # pylint: disable=abstract-method
"""
.. warning ::
Expand All @@ -344,7 +344,7 @@ def profile(
data_names=None,
projection=None,
**kwargs,
):
): # pylint: disable=abstract-method
"""
.. warning ::
Expand Down

0 comments on commit 85e15e8

Please sign in to comment.