summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/elements.py5
-rw-r--r--lib/sqlalchemy/sql/roles.py2
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py
index cdb1dbca8..169a6d846 100644
--- a/lib/sqlalchemy/sql/elements.py
+++ b/lib/sqlalchemy/sql/elements.py
@@ -450,8 +450,9 @@ class ClauseElement(
return self
def _ungroup(self):
- """Return this :class:`_expression.ClauseElement` """
- """without any groupings."""
+ """Return this :class:`_expression.ClauseElement`
+ without any groupings.
+ """
return self
diff --git a/lib/sqlalchemy/sql/roles.py b/lib/sqlalchemy/sql/roles.py
index 7d64e8382..8982cb159 100644
--- a/lib/sqlalchemy/sql/roles.py
+++ b/lib/sqlalchemy/sql/roles.py
@@ -204,7 +204,7 @@ class DMLColumnRole(SQLRole):
class DMLSelectRole(SQLRole):
- """A SELECT statement embedded in DML, typically INSERT from SELECT """
+ """A SELECT statement embedded in DML, typically INSERT from SELECT"""
_role_name = "SELECT statement or equivalent textual object"