Skip to content

Commit 905e815

Browse files
ChadThackraylazka
andauthored
Add __all__ to __init__.py (#696)
* Add __all__ to root __init__.py * Add version, version_string to __all__ too, to not break API --------- Co-authored-by: Christoph Reiter <reiter.christoph@gmail.com>
1 parent 811ad0f commit 905e815

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

mutagen/__init__.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,14 @@
2828
version_string = ".".join(map(str, version))
2929
"""Version string."""
3030

31-
MutagenError
32-
33-
FileType
34-
35-
StreamInfo
36-
37-
File
38-
39-
Tags
40-
41-
Metadata
42-
43-
PaddingInfo
31+
__all__ = [
32+
"MutagenError",
33+
"FileType",
34+
"StreamInfo",
35+
"File",
36+
"Tags",
37+
"Metadata",
38+
"PaddingInfo",
39+
"version",
40+
"version_string",
41+
]

0 commit comments

Comments
 (0)