diff --git a/google/cloud/bigquery/dataset.py b/google/cloud/bigquery/dataset.py index 40489a38b..c804c1c17 100644 --- a/google/cloud/bigquery/dataset.py +++ b/google/cloud/bigquery/dataset.py @@ -84,7 +84,7 @@ class AccessEntry(object): See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets. - Attributes: + Args: role (str): Role granted to the entity. The following string values are supported: `'READER'`, `'WRITER'`, `'OWNER'`. It may also be diff --git a/noxfile.py b/noxfile.py index b2d26568c..777c473ea 100644 --- a/noxfile.py +++ b/noxfile.py @@ -129,7 +129,7 @@ def cover(session): session.run("coverage", "erase") -@nox.session(python="3.8") +@nox.session(python="3.7") def lint(session): """Run linters. diff --git a/synth.py b/synth.py index d26c61489..aaac6d71f 100644 --- a/synth.py +++ b/synth.py @@ -61,4 +61,10 @@ templated_files = common.py_library(cov_level=100) s.move(templated_files, excludes=["noxfile.py"]) +s.replace( + "docs/conf.py", + '{"members": True}', + '{"members": True, "inherited-members": True}' +) + s.shell.run(["nox", "-s", "blacken"], hide_output=False)