summaryrefslogtreecommitdiff
path: root/test/test_exc.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
commite530544546b2a4e5f00e8d9458bf1b895573ec41 (patch)
tree9b957bd812fe98664d3f1f75615dda8242663097 /test/test_exc.py
parentf78fc42b90711c81e06699d1ebdbe69e6648b949 (diff)
downloadgitpython-e530544546b2a4e5f00e8d9458bf1b895573ec41.tar.gz
reformat according to 'black' configuration file.
Diffstat (limited to 'test/test_exc.py')
-rw-r--r--test/test_exc.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_exc.py b/test/test_exc.py
index 6c3353fc..f998ff4d 100644
--- a/test/test_exc.py
+++ b/test/test_exc.py
@@ -82,9 +82,7 @@ class TExc(TestBase):
for ex_class in exception_classes:
self.assertTrue(issubclass(ex_class, GitError))
- @ddt.data(
- *list(itt.product(_cmd_argvs, _causes_n_substrings, _streams_n_substrings))
- )
+ @ddt.data(*list(itt.product(_cmd_argvs, _causes_n_substrings, _streams_n_substrings)))
def test_CommandError_unicode(self, case):
argv, (cause, subs), stream = case
cls = CommandError