From 27d4e140f90f29671cace9bee23eae237db61b92 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Wed, 14 Jul 2021 11:57:50 -0600 Subject: [PATCH] alphabetize app parameters --- geomagio/api/secure/app.py | 2 +- geomagio/api/ws/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/geomagio/api/secure/app.py b/geomagio/api/secure/app.py index 06a1b701f..79e3f8c6a 100644 --- a/geomagio/api/secure/app.py +++ b/geomagio/api/secure/app.py @@ -12,9 +12,9 @@ from .SessionMiddleware import SessionMiddleware app = FastAPI( - title="Geomagnetism Metadata Web Service", description="Web service for interaction with operational metadata records", root_path="/ws/secure", + title="Geomagnetism Metadata Web Service", ) # NOTE: database used for sessions is started by ..app.app, diff --git a/geomagio/api/ws/app.py b/geomagio/api/ws/app.py index e965f524c..fdf9cc571 100644 --- a/geomagio/api/ws/app.py +++ b/geomagio/api/ws/app.py @@ -23,11 +23,11 @@ VERSION = os.getenv("GEOMAG_VERSION", "version") app = FastAPI( - title="Geomagnetism Data Web Service", description="Web service for data access and observatory/element information\n\n" + "Supports realtime processing via algorithms", docs_url="/docs", root_path="/ws", + title="Geomagnetism Data Web Service", ) app.include_router(algorithms.router) -- GitLab