Improve imports

This commit is contained in:
Bobloy 2018-04-20 13:14:22 -04:00
parent 67b8616709
commit e03c32926e
9 changed files with 2 additions and 25 deletions

View File

@ -1,11 +1,10 @@
import asyncio
import discord
import random
from werewolf.player import Player
import discord
from werewolf.builder import parse_code
from werewolf.player import Player
class Game:

View File

@ -1,4 +1,3 @@
import asyncio
import discord

View File

@ -1,6 +1,3 @@
import asyncio
class Role:
"""
Base Role class for werewolf game

View File

@ -1,5 +1,3 @@
import asyncio
from werewolf.role import Role
class Seer(Role):

View File

@ -1,5 +1,3 @@
import asyncio
from werewolf.role import Role
from werewolf.votegroups.wolfvote import WolfVote

View File

@ -1,5 +1,3 @@
import asyncio
from werewolf.role import Role
class Villager(Role):

View File

@ -1,8 +1,3 @@
import asyncio
import discord
class VoteGroup:
"""
Base VoteGroup class for werewolf game

View File

@ -1,7 +1,3 @@
import asyncio
import discord
import random
from werewolf.votegroup import VoteGroup

View File

@ -1,8 +1,5 @@
import asyncio
import discord
from discord.ext import commands
from redbot.core import Config
from werewolf.game import Game