From 4554f350fd64a219b4514afd94a05092d387360e Mon Sep 17 00:00:00 2001 From: Johan Van de Wauw Date: Mon, 14 Sep 2020 13:01:28 +0200 Subject: [PATCH] Limit namespace to base classes/functions Closes #55 Note that ipython usually does not respect these options, so end-users will probably not notice much of a difference. https://github.com/ipython/ipykernel/issues/129 --- niche_vlaanderen/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/niche_vlaanderen/__init__.py b/niche_vlaanderen/__init__.py index d9845a58..b564bddb 100644 --- a/niche_vlaanderen/__init__.py +++ b/niche_vlaanderen/__init__.py @@ -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']