diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-03-17 16:18:55 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-03-19 23:15:15 -0400 |
commit | 6c3d738757d7be32dc9f99d8e1c6b5c81c596d5f (patch) | |
tree | ae142d45de71d1ebd43df1a38e54e1d3cf1063ec /test/ext/mypy/plain_files/sql_operations.py | |
parent | c2fe4a264003933ff895c51f5d07a8456ac86382 (diff) | |
download | sqlalchemy-6c3d738757d7be32dc9f99d8e1c6b5c81c596d5f.tar.gz |
pep 484 for types
strict types type_api.py, including TypeDecorator,
NativeForEmulated, etc.
Change-Id: Ib2eba26de0981324a83733954cb7044a29bbd7db
Diffstat (limited to 'test/ext/mypy/plain_files/sql_operations.py')
-rw-r--r-- | test/ext/mypy/plain_files/sql_operations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ext/mypy/plain_files/sql_operations.py b/test/ext/mypy/plain_files/sql_operations.py index b7bae0185..78b0a467c 100644 --- a/test/ext/mypy/plain_files/sql_operations.py +++ b/test/ext/mypy/plain_files/sql_operations.py @@ -25,7 +25,8 @@ expr4 = -c2 expr5 = ~(c2 == 5) -expr6 = ~column("q", Boolean) +q = column("q", Boolean) +expr6 = ~q expr7 = c1 + "x" |