diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-11 13:46:56 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-04-11 13:46:56 -0400 |
commit | 43bcb0de1ecc1dc2abd7e7c3eb0c39f3eab9adc0 (patch) | |
tree | 34cd5fe4d3b8471747de8dfb4c5ebbe5e0ea679f /lib/sqlalchemy/sql/schema.py | |
parent | 6e1cbe426479438f1fc12ce6ae9424cf5d191ddf (diff) | |
download | sqlalchemy-43bcb0de1ecc1dc2abd7e7c3eb0c39f3eab9adc0.tar.gz |
Fix almost all read-level sphinx warnings
There are some related to changelog that I can't figure out
and are likely due to something in the changelog extension.
also one thing with a "collection" I can't figure out.
Change-Id: I0a9e6f4291c3589aa19a4abcb9245cd22a266fe0
Diffstat (limited to 'lib/sqlalchemy/sql/schema.py')
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 56695708e..d65821c5c 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -787,7 +787,9 @@ class Table(DialectKWArgs, SchemaItem, TableClause): ":meth:`.Inspector.has_table`.", ) def exists(self, bind=None): - """Return True if this table exists.""" + """Return True if this table exists. + + """ if bind is None: bind = _bind_or_error(self) |