correction from __future__ import unicode_literals
This commit is contained in:
parent
033c187396
commit
f238171ca1
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""Main module."""
|
"""Main module."""
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import aiocron
|
import aiocron
|
||||||
import asyncio
|
import asyncio
|
||||||
import discord
|
import discord
|
||||||
|
@ -12,7 +14,6 @@ import random
|
||||||
import requests
|
import requests
|
||||||
import youtube_dl
|
import youtube_dl
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
from bs4 import BeautifulSoup as bs
|
from bs4 import BeautifulSoup as bs
|
||||||
from discord.ext import tasks, commands
|
from discord.ext import tasks, commands
|
||||||
from giphy_client.rest import ApiException
|
from giphy_client.rest import ApiException
|
||||||
|
|
Loading…
Reference in a new issue