summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql/test_reflection.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-01-27 16:51:05 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2020-01-27 16:56:25 -0500
commitbfddff4c9f72adc5d326cee9783c77d358254837 (patch)
tree59f12a717a3b3659eee453683d7758dbe1a1db5d /test/dialect/postgresql/test_reflection.py
parent0cc2695510c0f0b09328e4cdf8d3ae29ac7f7abd (diff)
downloadsqlalchemy-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.py8
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",