Compare commits

...
Author SHA1 Message Date
Andrew Ferlitsch 45e88b09cd fix: add abbr 2022-09-28 21:27:28 +00:00
+1 -1
View File
@@ -322,7 +322,7 @@ def check_sentence_case(path, heading):
for word in words[1:]:
word = word.replace(':', '').replace('(', '').replace(')', '')
if word in ['E2E', 'Vertex', 'AutoML', 'ML', 'AI', 'GCP', 'API', 'R', 'CMEK', 'TFX', 'TFDV', 'SDK',
'VM', 'CPR', 'NVIDIA', 'ID', 'DASK', 'ARIMA_PLUS', 'KFP']:
'VM', 'CPR', 'NVIDIA', 'ID', 'DASK', 'ARIMA_PLUS', 'KFP', 'I/O']:
continue
if word.isupper():
report_error(path, 3, f"heading is not sentence case: {word}")