summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql/schema.py')
-rw-r--r--lib/sqlalchemy/sql/schema.py4
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)