From 9c346df483a66c8e8b09ff579fd39dab7cc7ed8e Mon Sep 17 00:00:00 2001 From: Viktor Seifert Date: Mon, 18 Jul 2022 15:35:54 +0200 Subject: [PATCH] RED-4653: Removed file that is no longer in use --- pyinfra/locations.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 pyinfra/locations.py diff --git a/pyinfra/locations.py b/pyinfra/locations.py deleted file mode 100644 index 54c5a17..0000000 --- a/pyinfra/locations.py +++ /dev/null @@ -1,18 +0,0 @@ -"""Defines constant paths relative to the module root path.""" - -from pathlib import Path - - -MODULE_DIR = Path(__file__).resolve().parents[0] - -PACKAGE_ROOT_DIR = MODULE_DIR.parents[0] - -TEST_DIR = PACKAGE_ROOT_DIR / "test" - -CONFIG_FILE = PACKAGE_ROOT_DIR / "config.yaml" - -TEST_CONFIG_FILE = TEST_DIR / "config.yaml" - -COMPOSE_PATH = PACKAGE_ROOT_DIR - -BANNER_FILE = PACKAGE_ROOT_DIR / "banner.txt"