Fixed spacing in _getextrema method

Signed-off-by: Andreas Florath <andreas@florath.net>
This commit is contained in:
Andreas Florath 2023-12-01 16:21:29 +01:00
parent 1b8f9d386b
commit 7762dd382a

View File

@ -69,7 +69,7 @@ class Stat:
v = []
for i in range(0, len(self.h), 256):
v.append(minmax(self.h[i:i+256]))
v.append(minmax(self.h[i : i + 256]))
return v
def _getcount(self):