Revert unnecessary formatting change

This commit is contained in:
Sebastian Rittau 2024-05-11 10:46:20 +02:00 committed by GitHub
parent 6310280428
commit 6d6dfd176c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3802,7 +3802,7 @@ class Exif(_ExifBase):
return self._fixup_dict(info)
def _get_head(self):
version = b"\x2b" if self.bigtiff else b"\x2a"
version = b"\x2B" if self.bigtiff else b"\x2A"
if self.endian == "<":
head = b"II" + version + b"\x00" + o32le(8)
else: