Skip to content

Commit

Permalink
Limit namespace to base classes/functions
Browse files Browse the repository at this point in the history
Closes #55

Note that ipython usually does not respect these options, so end-users
will probably not notice much of a difference.

ipython/ipykernel#129
  • Loading branch information
johanvdw committed Sep 14, 2020
1 parent 820ff6a commit 4554f35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion niche_vlaanderen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from .acidity import Acidity # noqa
from .niche import Niche, NicheDelta, conductivity2minerality # noqa
from .acidity import Acidity # noqa
from .nutrient_level import NutrientLevel # noqa
from .vegetation import Vegetation # noqa
from .version import __version__ # noqa
from .flooding import Flooding # noqa

__all__ = ['Acidity', 'Niche', 'NicheDelta', 'conductivity2minerality', 'NutrientLevel', 'Vegetation', 'Flooding']

0 comments on commit 4554f35

Please sign in to comment.