Skip to content

Commit

Permalink
Run isort
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanFeenstra committed Feb 4, 2024
1 parent f840a96 commit d9141a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os
from sys import stderr
from traceback import print_tb
from typing import Awaitable, Callable, List, Iterable, NamedTuple, Optional, Set
from typing import Awaitable, Callable, Iterable, List, NamedTuple, Optional, Set

import discord
from aiohttp import ClientSession
Expand Down
1 change: 1 addition & 0 deletions cogs/owneronly.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from typing import List

import discord
from discord import app_commands
from discord.ext import commands
Expand Down
1 change: 1 addition & 0 deletions cogs/savedquotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from typing import List

import discord
from discord import app_commands
from discord.ext import commands
Expand Down
2 changes: 1 addition & 1 deletion core/message_retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import re
from typing import Iterator, AsyncGenerator, NamedTuple, Optional
from typing import AsyncGenerator, Iterator, NamedTuple, Optional

import discord
from discord.ext import commands
Expand Down

0 comments on commit d9141a2

Please sign in to comment.