diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-17 22:11:31 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-17 22:11:56 -0400 |
commit | d25c03310fd3523392d37b88c23c48cf26836248 (patch) | |
tree | fdf19e0538d9535b3692fc82989e0f880627bfdc /lib/sqlalchemy/sql/functions.py | |
parent | e45878bf4f9cdfb714dce8b2a4d705178947674d (diff) | |
download | sqlalchemy-d25c03310fd3523392d37b88c23c48cf26836248.tar.gz |
Fix test failures from func doc fix
The doc edits in e45878bf4f9cdfb714dce8b2a4d705178947674d
triggered a doctest and a pep8 failure.
Change-Id: I41c6cba9bab2d3721d9c6280be47eec32f4b4736
Diffstat (limited to 'lib/sqlalchemy/sql/functions.py')
-rw-r--r-- | lib/sqlalchemy/sql/functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py index 4a26f8921..cbc8e539f 100644 --- a/lib/sqlalchemy/sql/functions.py +++ b/lib/sqlalchemy/sql/functions.py @@ -580,7 +580,7 @@ class Function(FunctionElement): :param \*clauses: list of column expressions that form the arguments of the SQL function call. - :param type_: optional :class:`.TypeEngine` datatype object that will be + :param type\_: optional :class:`.TypeEngine` datatype object that will be used as the return value of the column expression generated by this function call. |