Skip to content

Commit

Permalink
remove inheritdocstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
adrn committed Nov 8, 2019
1 parent f3e8036 commit c19f796
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions gala/integrate/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

# Third-party
import numpy as np
from astropy.utils import InheritDocstrings

# This project
from ..units import UnitSystem, DimensionlessUnitSystem

__all__ = ["Integrator"]


class Integrator(object, metaclass=InheritDocstrings):
class Integrator(object):

def __init__(self, func, func_args=(), func_units=None, progress=False):
if not hasattr(func, '__call__'):
Expand Down
1 change: 0 additions & 1 deletion gala/potential/potential/ccompositepotential.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from collections import OrderedDict

# Third-party
from astropy.utils import InheritDocstrings
import numpy as np
cimport numpy as np
np.import_array()
Expand Down
1 change: 0 additions & 1 deletion gala/potential/potential/cpotential.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import warnings
import uuid

# Third-party
from astropy.utils import InheritDocstrings
import numpy as np
cimport numpy as np
np.import_array()
Expand Down

0 comments on commit c19f796

Please sign in to comment.