Skip to content

Commit ee75f0b

Browse files
committed
test: fix E275 missing whitespace after keyword
1 parent cc29965 commit ee75f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filetype/types/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def match(self, buf):
196196
buf[2] == 0x2A and buf[3] == 0x0) or
197197
(buf[0] == 0x4D and buf[1] == 0x4D and
198198
buf[2] == 0x0 and buf[3] == 0x2A))
199-
and not(buf[8] == 0x43 and buf[9] == 0x52))
199+
and not (buf[8] == 0x43 and buf[9] == 0x52))
200200

201201

202202
class Bmp(Type):

0 commit comments

Comments
 (0)