From e2482af4485a2f8f6da15a3cef7574473963ea45 Mon Sep 17 00:00:00 2001 From: Matheus Felipe <50463866+matheusfelipeog@users.noreply.github.com> Date: Sun, 16 Jan 2022 23:49:12 -0300 Subject: [PATCH] Add temporary replacement of punctuation --- scripts/validate/format.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/validate/format.py b/scripts/validate/format.py index c70a7756..b22696d8 100644 --- a/scripts/validate/format.py +++ b/scripts/validate/format.py @@ -5,6 +5,9 @@ import sys from string import punctuation from typing import List, Tuple, Dict +# Temporary replacement +# The descriptions that contain () at the end must adapt to the new policy later +punctuation = punctuation.replace('()', '') anchor = '###' auth_keys = ['apiKey', 'OAuth', 'X-Mashape-Key', 'User-Agent', 'No']