From 7dee9f6f3df4deb245770001890cd59e2f5f7126 Mon Sep 17 00:00:00 2001 From: Reillyhewitson Date: Thu, 10 Nov 2022 16:17:36 +0000 Subject: [PATCH] Fix linting --- datagateway_api/src/common/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/datagateway_api/src/common/config.py b/datagateway_api/src/common/config.py index 53438fb1..176df338 100644 --- a/datagateway_api/src/common/config.py +++ b/datagateway_api/src/common/config.py @@ -192,7 +192,8 @@ def load(cls, path=Path(__file__).parent.parent.parent / "config.json"): if "datagateway_api" not in data and "search_api" not in data: log.warning( - " WARNING: There is no API specified in the configuration file" + " WARNING: There is no API specified in the " + "configuration file", ) return cls(**data)