Change how pathlib.Path is imported

This commit is contained in:
Eric Torres 2019-03-30 08:00:17 -07:00
parent 660e5870ef
commit 3c0eefd0d3

View File

@ -1,10 +1,11 @@
"""Module for config file helper functions."""
import configparser
import pathlib
from pathlib import Path
# ========== Constants ==========
PACMAN_CONF = pathlib.Path("/etc/pacman.conf")
PACMAN_CONF = Path("/etc/pacman.conf")
# ========== Functions ==========