Skip to content

Commit

Permalink
Lints
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed Nov 24, 2024
1 parent dc18b4e commit 7c3ae74
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions wavinfo/wave_smpl_reader.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import struct

from enum import IntEnum
from typing import Tuple, NamedTuple, List


Expand Down Expand Up @@ -28,8 +27,8 @@ def __init__(self, smpl_data: bytes):
unpacked_data = struct.unpack(header_field_fmt,
smpl_data[0:header_size])

#: The MIDI Manufacturer's Association code for the sampler manufactuer,
#: or 0 if not specific.
#: The MIDI Manufacturer's Association code for the sampler
#: manufactuer, or 0 if not specific.
self.manufacturer: int = unpacked_data[0]

#: The manufacturer-assigned code for their specific sampler model, or
Expand Down

0 comments on commit 7c3ae74

Please sign in to comment.