mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 17:36:15 +00:00
Consistent use of __all__ to prevent merge conflicts.
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user