Skip to content

Commit b484f33

Browse files
authored
fix E201 flake8
1 parent 70ab964 commit b484f33

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

filetype/types/video.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ def __init__(self):
221221

222222
def match(self, buf):
223223
return (len(buf) > 10 and
224-
buf[ 4] == 0x66 and
225-
buf[ 5] == 0x74 and
226-
buf[ 6] == 0x79 and
227-
buf[ 7] == 0x70 and
228-
buf[ 8] == 0x33 and
229-
buf[ 9] == 0x67 and
224+
buf[4] == 0x66 and
225+
buf[5] == 0x74 and
226+
buf[6] == 0x79 and
227+
buf[7] == 0x70 and
228+
buf[8] == 0x33 and
229+
buf[9] == 0x67 and
230230
buf[10] == 0x70)

0 commit comments

Comments
 (0)