mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-04 17:06:21 +00:00
Consistent use of __all__ to prevent merge conflicts.
This commit is contained in:
@ -27,7 +27,11 @@ DEALINGS IN THE SOFTWARE.
|
||||
import enum
|
||||
import time
|
||||
|
||||
__all__ = ['BucketType', 'Cooldown', 'CooldownMapping']
|
||||
__all__ = (
|
||||
'BucketType',
|
||||
'Cooldown',
|
||||
'CooldownMapping',
|
||||
)
|
||||
|
||||
class BucketType(enum.Enum):
|
||||
default = 0
|
||||
|
Reference in New Issue
Block a user