From 6bba1c4311ef07d928d28a9903c25e5b7ba95532 Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Tue, 2 Apr 2024 13:19:13 +1100 Subject: [PATCH] chore: remove redundant __all__ Signed-off-by: JP-Ellis --- src/pact/constants.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pact/constants.py b/src/pact/constants.py index f29805940..f06a4d24f 100644 --- a/src/pact/constants.py +++ b/src/pact/constants.py @@ -10,14 +10,6 @@ import warnings from pathlib import Path -__all__ = [ - "BROKER_CLIENT_PATH", - "MESSAGE_PATH", - "MOCK_SERVICE_PATH", - "VERIFIER_PATH", -] - - _USE_SYSTEM_BINS = os.getenv("PACT_USE_SYSTEM_BINS", "").upper() in ("TRUE", "YES") _BIN_DIR = Path(__file__).parent.resolve() / "bin"