Skip to content

Commit f692820

Browse files
committed
Fix style violations
1 parent 4a3562b commit f692820

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

kaitaistruct.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def int_from_byte(v):
379379
@staticmethod
380380
def byte_array_index(data, i):
381381
return KaitaiStream.int_from_byte(data[i])
382-
382+
383383
@staticmethod
384384
def byte_array_min(b):
385385
return KaitaiStream.int_from_byte(min(b))
@@ -437,6 +437,7 @@ def __init__(self, expected, actual, io, src_path):
437437
self.expected = expected
438438
self.actual = actual
439439

440+
440441
class ValidationLessThanError(ValidationFailedError):
441442
"""Signals validation failure: we required "actual" value to be
442443
greater than or equal to "min", but it turned out that it's not.
@@ -446,6 +447,7 @@ def __init__(self, min, actual, io, src_path):
446447
self.min = min
447448
self.actual = actual
448449

450+
449451
class ValidationGreaterThanError(ValidationFailedError):
450452
"""Signals validation failure: we required "actual" value to be
451453
less than or equal to "max", but it turned out that it's not.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
this_dir = os.path.dirname(__file__)
66
cfg = read_configuration(os.path.join(this_dir, 'setup.cfg'))
7-
#print(cfg)
87
cfg["options"].update(cfg["metadata"])
98
cfg = cfg["options"]
109

0 commit comments

Comments
 (0)