Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Mar 22, 2020
1 parent 4381324 commit 3d276cf
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/audio_metadata/formats/id3v2_frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,37 +116,36 @@ class ID3v2InvolvedPerson(AttrMapping):
repr=False,
kw_only=True,
)
class ID3v2Performer(AttrMapping):
instrument = attrib()
name = attrib()
class ID3v2Lyrics(AttrMapping):
language = attrib()
description = attrib()
text = attrib()


@attrs(
repr=False,
kw_only=True,
)
class ID3v2PrivateInfo(AttrMapping):
owner = attrib()
data = attrib()
class ID3v2SynchronizedLyrics(ID3v2Lyrics):
timestamp_format = attrib(converter=ID3v2LyricsTimestampFormat)
content_type = attrib(converter=ID3v2LyricsContentType)


@attrs(
repr=False,
kw_only=True,
)
class ID3v2UniqueFileIdentifier(AttrMapping):
owner = attrib()
identifier = attrib()
class ID3v2UnsynchronizedLyrics(ID3v2Lyrics):
pass


@attrs(
repr=False,
kw_only=True,
)
class ID3v2Lyrics(AttrMapping):
language = attrib()
description = attrib()
text = attrib()
class ID3v2Performer(AttrMapping):
instrument = attrib()
name = attrib()


class ID3v2Picture(Picture):
Expand Down Expand Up @@ -181,17 +180,18 @@ def parse(cls, data):
repr=False,
kw_only=True,
)
class ID3v2SynchronizedLyrics(ID3v2Lyrics):
timestamp_format = attrib(converter=ID3v2LyricsTimestampFormat)
content_type = attrib(converter=ID3v2LyricsContentType)
class ID3v2PrivateInfo(AttrMapping):
owner = attrib()
data = attrib()


@attrs(
repr=False,
kw_only=True,
)
class ID3v2UnsynchronizedLyrics(ID3v2Lyrics):
pass
class ID3v2UniqueFileIdentifier(AttrMapping):
owner = attrib()
identifier = attrib()


@attrs(
Expand Down

0 comments on commit 3d276cf

Please sign in to comment.