From 5c543c9ab2dd65eb88a6f529a91fa20156da40ee Mon Sep 17 00:00:00 2001 From: Chintalagiri Shashank Date: Wed, 7 Aug 2019 13:48:45 +0530 Subject: [PATCH] Minor docstring fixes --- src/tendril/config/core.py | 21 ++++++++++++++++++++- src/tendril/config/legacy.py | 2 +- src/tendril/config/paths.py | 20 ++++++++++++++++++++ 3 files changed, 41 insertions(+), 2 deletions(-) diff --git a/src/tendril/config/core.py b/src/tendril/config/core.py index 987e80f..d7d5bef 100644 --- a/src/tendril/config/core.py +++ b/src/tendril/config/core.py @@ -1,4 +1,23 @@ - +# Copyright (C) 2019 Chintalagiri Shashank +# +# This file is part of Tendril. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +""" +Core Configuration Constants +============================ +""" import os from tendril.utils.config import ConfigConstant diff --git a/src/tendril/config/legacy.py b/src/tendril/config/legacy.py index 3ce2673..7c5fd04 100644 --- a/src/tendril/config/legacy.py +++ b/src/tendril/config/legacy.py @@ -16,7 +16,7 @@ # along with this program. If not, see . """ The Config Module (:mod:`tendril.config.legacy`) -=============================================== +================================================ This module provides the core configuration for Tendril. diff --git a/src/tendril/config/paths.py b/src/tendril/config/paths.py index d805f6f..b8498a1 100644 --- a/src/tendril/config/paths.py +++ b/src/tendril/config/paths.py @@ -1,3 +1,23 @@ +# Copyright (C) 2019 Chintalagiri Shashank +# +# This file is part of Tendril. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +""" +Paths Configuration Options +=========================== +""" from tendril.utils.config import ConfigOption