diff options
author | Federico Caselli <CaselIT@users.noreply.github.com> | 2020-03-04 10:33:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 10:33:30 +0100 |
commit | 3f1d41666cb230f203dc50f92db2d3ad42ce4e43 (patch) | |
tree | f1b26c373aefb71f5e67b4d995f7f9d11100dd80 | |
parent | 569f0892d9abcd421242562e6c4b223f2954422e (diff) | |
download | sqlalchemy-CaselIT-patch-1.tar.gz |
fix typo in pickletypeCaselIT-patch-1
-rw-r--r-- | lib/sqlalchemy/sql/sqltypes.py | 2 |
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``, |