Skip to content

Commit

Permalink
Remove unhelpful container docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
craffel committed Mar 3, 2017
1 parent be4866e commit 6bb8436
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions pretty_midi/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ class Note(object):
"""

def __init__(self, velocity, pitch, start, end):
"""Create a note object.
"""
self.velocity = velocity
self.pitch = pitch
self.start = start
Expand All @@ -48,9 +45,6 @@ class PitchBend(object):
"""

def __init__(self, pitch, time):
"""Create pitch bend object.
"""
self.pitch = pitch
self.time = time

Expand All @@ -73,9 +67,6 @@ class ControlChange(object):
"""

def __init__(self, number, value, time):
"""Create control change object.
"""
self.number = number
self.value = value
self.time = time
Expand Down

0 comments on commit 6bb8436

Please sign in to comment.