From 6389cd2247c03a1bf75119601a0b2cc370732bb4 Mon Sep 17 00:00:00 2001 From: Hanno Spreeuw Date: Mon, 25 Nov 2024 15:06:36 +0100 Subject: [PATCH] This should be the right way of specifying what should be documented, i.e. at the level of the modules, not at the level of classes or functions within those modules. --- marlpde/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/marlpde/__init__.py b/marlpde/__init__.py index dbe239a..9f61ee9 100644 --- a/marlpde/__init__.py +++ b/marlpde/__init__.py @@ -4,4 +4,6 @@ import pathlib import sys +__all__ = ["Evolve_scenario", "LHeureux_model", "parameters"] + sys.path.append(str(pathlib.Path(__file__).parent))