Skip to content

Commit

Permalink
ac3: Fixed inheriting AC3Info from StreamInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Oct 17, 2019
1 parent e6cc54d commit d3a0387
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mutagen/ac3.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

__all__ = ["AC3", "Open"]

from mutagen import StreamInfo
from mutagen._compat import endswith
from mutagen._file import FileType
from mutagen._util import (
Expand Down Expand Up @@ -72,7 +73,7 @@ class AC3Error(MutagenError):
pass


class AC3Info(object):
class AC3Info(StreamInfo):

"""AC3 stream information.
The length of the stream is just a guess and might not be correct.
Expand Down

0 comments on commit d3a0387

Please sign in to comment.