Remove __all__ from openmc.stats modules

This commit is contained in:
Paul Romano 2017-09-29 09:26:14 -05:00
parent bc84687378
commit c46d0a7681
2 changed files with 0 additions and 8 deletions

View file

@ -12,10 +12,6 @@ import openmc.checkvalue as cv
from openmc.stats.univariate import Univariate, Uniform
__all__ = ['UnitSphere', 'PolarAzimuthal', 'Isotropic', 'Monodirectional',
'Spatial', 'CartesianIndependent', 'Box', 'Point']
@add_metaclass(ABCMeta)
class UnitSphere(object):
"""Distribution of points on the unit sphere.

View file

@ -11,10 +11,6 @@ import openmc.checkvalue as cv
from openmc.mixin import EqualityMixin
__all__ = ['Univariate', 'Discrete', 'Uniform', 'Maxwell', 'Watt', 'Tabular',
'Legendre', 'Mixture']
_INTERPOLATION_SCHEMES = ['histogram', 'linear-linear', 'linear-log',
'log-linear', 'log-log']