diff options
| author | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
| commit | 919dbcafb33eb4e2bb595d7e607f525cf2d02178 (patch) | |
| tree | 206ca4b5430c72854cc818c55d82ce8a641ff9ee /discord/player.py | |
| parent | [commands] Clean docstrings in Command.parents and Command.root_parent (diff) | |
| download | discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.tar.xz discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.zip | |
Consistent use of __all__ to prevent merge conflicts.
Diffstat (limited to 'discord/player.py')
| -rw-r--r-- | discord/player.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/discord/player.py b/discord/player.py index 345edcbc..3834a44a 100644 --- a/discord/player.py +++ b/discord/player.py @@ -37,7 +37,12 @@ from .opus import Encoder as OpusEncoder log = logging.getLogger(__name__) -__all__ = ['AudioSource', 'PCMAudio', 'FFmpegPCMAudio', 'PCMVolumeTransformer'] +__all__ = ( + 'AudioSource', + 'PCMAudio', + 'FFmpegPCMAudio', + 'PCMVolumeTransformer', +) class AudioSource: """Represents an audio stream. |