From ce9e002529f21f9d2bd397770794916adbc4242e Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Tue, 24 Aug 2021 05:55:49 -0700 Subject: [PATCH] Remove --gen_report flag. This will be the default behavior. PiperOrigin-RevId: 392643474 --- g3doc/build_docs.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/g3doc/build_docs.py b/g3doc/build_docs.py index 598de71..9e2ebda 100644 --- a/g3doc/build_docs.py +++ b/g3doc/build_docs.py @@ -37,9 +37,6 @@ flags.DEFINE_string('site_path', 'responsible_ai/privacy/api_docs/python/', 'The location of the doc setin the site.') flags.DEFINE_bool('search_hints', True, 'Include metadata search hints in the generated files.') -flags.DEFINE_bool('gen_report', False, - ('Generate an API report containing the health of the' - 'docstrings of the public API.')) FLAGS = flags.FLAGS @@ -85,8 +82,6 @@ def gen_api_docs(): code_url_prefix=FLAGS.code_url_prefix, site_path=FLAGS.site_path, search_hints=FLAGS.search_hints, - private_map={}, - gen_report=FLAGS.gen_report, # This callback cleans up a lot of aliases caused by internal imports. callbacks=[public_api.explicit_package_contents_filter])