From 19184f73a388325612bc7fc3302d2035459d850b Mon Sep 17 00:00:00 2001 From: Marek Dano Date: Sat, 3 Apr 2021 10:36:20 +0100 Subject: [PATCH] Add 'User-Agent' to the auth_keys array in the validate_format script --- build/validate_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/validate_format.py b/build/validate_format.py index 545fea2c..4610f379 100755 --- a/build/validate_format.py +++ b/build/validate_format.py @@ -5,7 +5,7 @@ import sys anchor = '###' min_entries_per_section = 3 -auth_keys = ['apiKey', 'OAuth', 'X-Mashape-Key', 'No'] +auth_keys = ['apiKey', 'OAuth', 'X-Mashape-Key', 'No', 'User-Agent'] punctuation = ['.', '?', '!'] https_keys = ['Yes', 'No'] cors_keys = ['Yes', 'No', 'Unknown']