From edbedf6228e29c8b2505ed1f081c9b9e450a35e0 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 28 Apr 2022 20:04:01 +0200 Subject: [PATCH] Docstring for the Pelican settings. To silence pydocstyle and so I don't forget what's the difference between the 2 files. --- pelicanconf.py | 1 + publishconf.py | 1 + 2 files changed, 2 insertions(+) diff --git a/pelicanconf.py b/pelicanconf.py index 9f875b6..2ea3f0a 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # # pylint: disable=import-error +"""Pelican configuration.""" from __future__ import unicode_literals import seafoam diff --git a/publishconf.py b/publishconf.py index 77f6416..c2eb85f 100644 --- a/publishconf.py +++ b/publishconf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- # +"""Pelican configuration for publishing to the production site.""" from __future__ import unicode_literals # This file is only used if you explicitly specify it as your config file. -- GitLab