diff options
author | Khairi Hafsham <jumanjisama@gmail.com> | 2017-02-02 13:02:21 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-02-07 11:21:56 -0500 |
commit | 772374735da27df1ddb907f4a0f5085b46dbe82b (patch) | |
tree | 41f88c835a74d4665c97853ae8676a5181d61db3 /test/ext/test_automap.py | |
parent | d71f4b47186972c5248c94ee2d04364da95a0965 (diff) | |
download | sqlalchemy-772374735da27df1ddb907f4a0f5085b46dbe82b.tar.gz |
Make all tests to be PEP8 compliant
tested using pycodestyle version 2.2.0
Fixes: #3885
Change-Id: I5df43adc3aefe318f9eeab72a078247a548ec566
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/343
Diffstat (limited to 'test/ext/test_automap.py')
-rw-r--r-- | test/ext/test_automap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ext/test_automap.py b/test/ext/test_automap.py index 0c5c4e9dd..768f5ed0f 100644 --- a/test/ext/test_automap.py +++ b/test/ext/test_automap.py @@ -93,7 +93,8 @@ class AutomapTest(fixtures.MappedTest): """ The underlying reflect call accepts an optional schema argument. This is for determining which database schema to load. - This test verifies that prepare passes a default None if no schema is provided. + This test verifies that prepare passes a default None if no schema is + provided. """ Base = automap_base(metadata=self.metadata) engine_mock = Mock() |