summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <CaselIT@users.noreply.github.com>2020-03-04 10:33:30 +0100
committerGitHub <noreply@github.com>2020-03-04 10:33:30 +0100
commit3f1d41666cb230f203dc50f92db2d3ad42ce4e43 (patch)
treef1b26c373aefb71f5e67b4d995f7f9d11100dd80
parent569f0892d9abcd421242562e6c4b223f2954422e (diff)
downloadsqlalchemy-CaselIT-patch-1.tar.gz
fix typo in pickletypeCaselIT-patch-1
-rw-r--r--lib/sqlalchemy/sql/sqltypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/sqltypes.py b/lib/sqlalchemy/sql/sqltypes.py
index e4a029a3e..2d6b44299 100644
--- a/lib/sqlalchemy/sql/sqltypes.py
+++ b/lib/sqlalchemy/sql/sqltypes.py
@@ -1628,7 +1628,7 @@ class PickleType(TypeDecorator):
:param pickler: defaults to cPickle.pickle or pickle.pickle if
cPickle is not available. May be any object with
- pickle-compatible ``dumps` and ``loads`` methods.
+ pickle-compatible ``dumps`` and ``loads`` methods.
:param comparator: a 2-arg callable predicate used
to compare values of this type. If left as ``None``,