From 40f5f711ff5c8f7b0d187b9250e0880d8766bd3b Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 30 Jan 2019 17:05:49 -0800 Subject: [PATCH] Add docstrings --- packaging_scripts/pacmanconf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging_scripts/pacmanconf.py b/packaging_scripts/pacmanconf.py index d169c56..3db21fa 100644 --- a/packaging_scripts/pacmanconf.py +++ b/packaging_scripts/pacmanconf.py @@ -3,9 +3,11 @@ import configparser import pathlib +# ========== Constants ========== PACMAN_CONF = pathlib.Path('/etc/pacman.conf') +# ========== Functions ========== def parse_configfile(filepath): """Parse a config file given its path and return a ConfigParser object.