From f51a8910d16e299b7741d97e8064fa6777a4a6aa Mon Sep 17 00:00:00 2001 From: Benjamin Webb <40066515+webb-ben@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:41:30 -0400 Subject: [PATCH] Fix indentation error (#1618) --- pygeoapi/api/processes.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pygeoapi/api/processes.py b/pygeoapi/api/processes.py index 6cc7a71..7cb96ec 100644 --- a/pygeoapi/api/processes.py +++ b/pygeoapi/api/processes.py @@ -663,15 +663,15 @@ def get_oas_30(cfg: dict, locale: str) -> tuple[list[dict[str, str]], dict[str, if 'example' in p.metadata: paths[f'{process_name_path}/execution']['post']['requestBody']['content']['application/json']['example'] = p.metadata['example'] # noqa - name_in_path = { - 'name': 'jobId', - 'in': 'path', - 'description': 'job identifier', - 'required': True, - 'schema': { - 'type': 'string' - } + name_in_path = { + 'name': 'jobId', + 'in': 'path', + 'description': 'job identifier', + 'required': True, + 'schema': { + 'type': 'string' } + } paths['/jobs'] = { 'get': {