TimeViewers / signalworks

MIT License
3 stars 2 forks source link

Wave objects are not Tracks (but they should be) #8

Closed j9ac9k closed 5 years ago

j9ac9k commented 5 years ago

Description

Waveform, and other track-like objects are not actually tracks.

isinstance(waveformObject, Track) == False

currently in wave.py the Wave object is defined as such:

class Wave(MetaTrack):

instead, it should likely be

class Wave(Track, metaclass=MetaTrack):
tuanad121 commented 5 years ago

Wave is now Track :D