diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-05-18 08:01:38 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-05-18 08:01:38 +0800 |
commit | e530544546b2a4e5f00e8d9458bf1b895573ec41 (patch) | |
tree | 9b957bd812fe98664d3f1f75615dda8242663097 /test/test_blob.py | |
parent | f78fc42b90711c81e06699d1ebdbe69e6648b949 (diff) | |
download | gitpython-e530544546b2a4e5f00e8d9458bf1b895573ec41.tar.gz |
reformat according to 'black' configuration file.
Diffstat (limited to 'test/test_blob.py')
-rw-r--r-- | test/test_blob.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_blob.py b/test/test_blob.py index ad5b46c1..b94dcec2 100644 --- a/test/test_blob.py +++ b/test/test_blob.py @@ -18,6 +18,4 @@ class TestBlob(TestBase): self.assertEqual("text/plain", blob.mime_type) def test_nodict(self): - self.assertRaises( - AttributeError, setattr, self.rorepo.tree()["AUTHORS"], "someattr", 2 - ) + self.assertRaises(AttributeError, setattr, self.rorepo.tree()["AUTHORS"], "someattr", 2) |