diff options
author | Federico Caselli <cfederico87@gmail.com> | 2022-04-11 22:21:20 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2022-04-11 22:48:23 +0200 |
commit | 11bf82447438a9d5d9df9d613bf245694d6120dc (patch) | |
tree | 727dd81d7dbf9811b15639aabb4ee69ce4ee5646 /test/sql/test_functions.py | |
parent | fd052732604a0d03167978215f0077e60b75851d (diff) | |
download | sqlalchemy-11bf82447438a9d5d9df9d613bf245694d6120dc.tar.gz |
update flake8 noqa skips with proper syntax
Change-Id: I42ed77f559e3ee5b8c600d98457ee37803ef0ea6
Diffstat (limited to 'test/sql/test_functions.py')
-rw-r--r-- | test/sql/test_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py index c055bc150..693a41c3a 100644 --- a/test/sql/test_functions.py +++ b/test/sql/test_functions.py @@ -1394,7 +1394,7 @@ class TableValuedCompileTest(fixtures.TestBase, AssertsCompiledSQL): `WITH ORDINALITY AS unnested(unnested, ordinality) ON true LEFT OUTER JOIN b ON unnested.unnested = b.ref - """ # noqa 501 + """ # noqa: 501 a = table("a", column("id"), column("refs")) b = table("b", column("id"), column("ref")) |