From 18c412d1dd2b5218b01c64748d86d0aeede85a91 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Wed, 16 Mar 2022 11:48:58 +0100 Subject: [PATCH] DOC: add missing docstring for models.py, update Copyright --- src/caosdb/common/models.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/caosdb/common/models.py b/src/caosdb/common/models.py index 5913ad72..4894f937 100644 --- a/src/caosdb/common/models.py +++ b/src/caosdb/common/models.py @@ -5,9 +5,9 @@ # # Copyright (C) 2018 Research Group Biomedical Physics, # Max-Planck-Institute for Dynamics and Self-Organization Göttingen -# Copyright (C) 2020 Indiscale GmbH <info@indiscale.com> +# Copyright (C) 2020-2022 Indiscale GmbH <info@indiscale.com> # Copyright (C) 2020 Florian Spreckelsen <f.spreckelsen@indiscale.com> -# Copyright (C) 2020 Timm Fitschen <t.fitschen@indiscale.com> +# Copyright (C) 2020-2022 Timm Fitschen <t.fitschen@indiscale.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -25,7 +25,14 @@ # ** end header # -"""missing docstring.""" +""" +Collection of the central classes of the CaosDB client, namely the Entity class +and all of its subclasses and the Container class which is used to carry out +transactions. + +All additional classes are either important for the entities or the +transactions. +""" from __future__ import print_function, unicode_literals import re -- GitLab