From 5f087d404ae8f80e9bf556ba67421eaa61a1563a Mon Sep 17 00:00:00 2001 From: Tom de Geus Date: Wed, 15 Nov 2023 10:51:45 +0100 Subject: [PATCH] Add typing hint (#61) --- python/GooseEPM/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/GooseEPM/__init__.py b/python/GooseEPM/__init__.py index 9bcd367..eef3907 100644 --- a/python/GooseEPM/__init__.py +++ b/python/GooseEPM/__init__.py @@ -4,6 +4,12 @@ from ._GooseEPM import * # noqa: F401, F403 +class SystemClass: + """ + Typing hint. + """ + + def allocate_System(*args, **kwargs): """ Allocate the appropriate ``System*`` object.