Skip to content

Commit

Permalink
Rename modules for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Apr 9, 2020
1 parent 79fd165 commit 19860c0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/audio_metadata/formats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
from .flac import *
from .id3v1 import *
from .id3v2 import *
from .id3v2_frames import *
from .id3v2frames import *
from .mp3 import *
from .ogg import *
from .oggopus import *
from .oggvorbis import *
from .tables import *
from .vorbis_comments import *
from .vorbiscomments import *
from .wave import *


__all__ = [
*flac.__all__,
*id3v1.__all__,
*id3v2_frames.__all__,
*id3v2.__all__,
*id3v2frames.__all__,
*mp3.__all__,
*ogg.__all__,
*oggopus.__all__,
*oggvorbis.__all__,
*tables.__all__,
*vorbis_comments.__all__,
*vorbiscomments.__all__,
*wave.__all__,
]
2 changes: 1 addition & 1 deletion src/audio_metadata/formats/flac.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
FLACMetadataBlockType,
ID3PictureType,
)
from .vorbis_comments import VorbisComments
from .vorbiscomments import VorbisComments
from ..exceptions import FormatError
from ..models import (
Format,
Expand Down
2 changes: 1 addition & 1 deletion src/audio_metadata/formats/id3v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
datareader,
)

from .id3v2_frames import (
from .id3v2frames import (
ID3v2Frame,
ID3v2GenreFrame,
ID3v2NumericTextFrame,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/audio_metadata/formats/oggopus.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from .flac import FLACPicture
from .ogg import Ogg
from .vorbis_comments import VorbisComments
from .vorbiscomments import VorbisComments
from ..exceptions import FormatError
from ..models import StreamInfo

Expand Down
2 changes: 1 addition & 1 deletion src/audio_metadata/formats/oggvorbis.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from .flac import FLACPicture
from .ogg import Ogg
from .vorbis_comments import VorbisComments
from .vorbiscomments import VorbisComments
from ..exceptions import FormatError
from ..models import StreamInfo

Expand Down
File renamed without changes.

0 comments on commit 19860c0

Please sign in to comment.