From a1c903c9ed1aed84e0d9847c940637584ddab6af Mon Sep 17 00:00:00 2001 From: Nelson Liu Date: Sun, 20 May 2018 23:58:12 -0700 Subject: [PATCH] Wildcard exclude custom_extensions from check_docs.py --- scripts/check_docs.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/check_docs.py b/scripts/check_docs.py index 25f9f9f3c27..68e61d2036d 100755 --- a/scripts/check_docs.py +++ b/scripts/check_docs.py @@ -16,10 +16,7 @@ 'allennlp.version', # No docs for custom extensions, which aren't even in python. - 'allennlp.custom_extensions*', - 'allennlp.custom_extensions._ext', - 'allennlp.custom_extensions._ext.highway_lstm_layer', - 'allennlp.custom_extensions.build', + 'allennlp.custom_extensions.*', # No docs for tests, unnecessary info for users. 'allennlp.tests.*',