From f238171ca18e9589417fa65770a852a647dcb927 Mon Sep 17 00:00:00 2001 From: BFlow Date: Wed, 29 Apr 2020 17:39:16 +0200 Subject: [PATCH] correction from __future__ import unicode_literals --- kabot/kabot/kabot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index cc4a543..43ba85c 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- """Main module.""" +from __future__ import unicode_literals + import aiocron import asyncio import discord @@ -12,7 +14,6 @@ import random import requests import youtube_dl -from __future__ import unicode_literals from bs4 import BeautifulSoup as bs from discord.ext import tasks, commands from giphy_client.rest import ApiException