Browse Source
* Add flake8 to travis * Various flake8 fixes * dont * Only test against 2.7 / 3.6 I really don't care about 3.3/3.4/3.5 * Fix usage of unicodedevelop
committed by
GitHub
30 changed files with 143 additions and 89 deletions
@ -0,0 +1,3 @@ |
|||
[flake8] |
|||
max-line-length = 120 |
|||
ignore=C408,C815,A003 |
@ -1,6 +1,18 @@ |
|||
from disco.types.base import UNSET |
|||
from disco.types.channel import Channel |
|||
from disco.types.guild import Guild, GuildMember, Role |
|||
from disco.types.user import User |
|||
from disco.types.message import Message |
|||
from disco.types.voice import VoiceState |
|||
from disco.types.base import UNSET # noqa: F401 |
|||
from disco.types.channel import Channel # noqa: F401 |
|||
from disco.types.guild import Guild, GuildMember, Role # noqa: F401 |
|||
from disco.types.user import User # noqa: F401 |
|||
from disco.types.message import Message # noqa: F401 |
|||
from disco.types.voice import VoiceState # noqa: F401 |
|||
|
|||
# TODO: deprecate this entire file |
|||
__all__ = { |
|||
'UNSET', |
|||
'Channel', |
|||
'Guild', |
|||
'GuildMember', |
|||
'Role', |
|||
'User', |
|||
'Message', |
|||
'VoiceState', |
|||
} |
|||
|
@ -1,3 +1,5 @@ |
|||
from disco.voice.client import * |
|||
from disco.voice.player import * |
|||
from disco.voice.playable import * |
|||
from disco.voice.client import * # noqa: F401,F403 |
|||
from disco.voice.player import * # noqa: F401,F403 |
|||
from disco.voice.playable import * # noqa: F401,F403 |
|||
|
|||
# TODO: deprecate this file |
|||
|
Loading…
Reference in new issue