Skip to content

Commit

Permalink
chore: sort imports with isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyvy-vi committed Jul 2, 2021
1 parent b69246e commit 10fa4fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/cogs/hello_world.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from discord.ext import commands
from discord.ext.commands import Context, Cog
from discord.ext.commands import Cog, Context

from src.consts import META


Expand Down
10 changes: 5 additions & 5 deletions src/cogs/standup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from src.consts import MONGO_URI
from datetime import datetime

from discord import Embed, Color
from discord import Color, Embed
from discord.ext import commands
from discord.ext.commands import Context, Cog, Converter

from discord.ext.commands import Cog, Context, Converter
from motor.motor_asyncio import AsyncIOMotorClient as MotorClient
from datetime import datetime

from src.consts import MONGO_URI


class Formatter(Converter):
Expand Down
4 changes: 2 additions & 2 deletions src/consts.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os
import json
import os
from typing import NamedTuple

from dotenv import load_dotenv
from typing import NamedTuple

load_dotenv()

Expand Down

0 comments on commit 10fa4fb

Please sign in to comment.