diff options
author | Federico Caselli <cfederico87@gmail.com> | 2020-01-27 16:51:05 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-01-27 16:56:25 -0500 |
commit | bfddff4c9f72adc5d326cee9783c77d358254837 (patch) | |
tree | 59f12a717a3b3659eee453683d7758dbe1a1db5d /test/dialect/postgresql/test_reflection.py | |
parent | 0cc2695510c0f0b09328e4cdf8d3ae29ac7f7abd (diff) | |
download | sqlalchemy-bfddff4c9f72adc5d326cee9783c77d358254837.tar.gz |
Add pyproject
- Added pyproject.toml with black arguments
- Updated black version in precommit hook
- Reformatted the code
Fixes: #5100
Closes: #5103
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5103
Pull-request-sha: 795fd5f896be4a07a2b18e6525674b815ac17593
Change-Id: I14eedbaa51fb531cbf90fcefe6a1e07c8a565625
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index cc231933c..b410ca748 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -1535,10 +1535,10 @@ class ReflectionTest(fixtures.TestBase): RETURN x > 0; END;$BODY$; """ - sa.event.listen(meta, "before_create", - sa.DDL(udf_create)) - sa.event.listen(meta, "after_drop", - sa.DDL("DROP FUNCTION is_positive(integer)")) + sa.event.listen(meta, "before_create", sa.DDL(udf_create)) + sa.event.listen( + meta, "after_drop", sa.DDL("DROP FUNCTION is_positive(integer)") + ) Table( "pgsql_cc", |