From e530544546b2a4e5f00e8d9458bf1b895573ec41 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 18 May 2022 08:01:38 +0800 Subject: reformat according to 'black' configuration file. --- git/db.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'git/db.py') diff --git a/git/db.py b/git/db.py index a119f4ea..bff43347 100644 --- a/git/db.py +++ b/git/db.py @@ -42,9 +42,7 @@ class GitCmdObjectDB(LooseObjectDB): def stream(self, binsha: bytes) -> OStream: """For now, all lookup is done by git itself""" - hexsha, typename, size, stream = self._git.stream_object_data( - bin_to_hex(binsha) - ) + hexsha, typename, size, stream = self._git.stream_object_data(bin_to_hex(binsha)) return OStream(hex_to_bin(hexsha), typename, size, stream) # { Interface -- cgit v1.2.1