Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions mutagenwrapper/_mp3.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import re

from mutagen.id3 import ID3, TextFrame
import mutagen.id3
from mutagen.mp3 import MP3
from mutagen.id3 import TextFrame
import mutagen.mp3

from ._wrappers import FreeformTagsWrapper
from ._handlers import TagHandler, TextTagHandler, PairTagHandler
Expand Down Expand Up @@ -66,7 +67,7 @@ def _set_override_me(self, tags, value):
tags[self.original_key].text = value


class ID3Hack(ID3):
class ID3Hack(MP3):

def loaded_frame(self, tag):
key = tag.HashKey
Expand Down