Skip to content

Commit

Permalink
Fix isort
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanAkkerman committed Jun 6, 2024
1 parent 583ba76 commit 65a0d7e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ profile = "black"

[tool.ruff]
line-length = 88
select = ["I001"]
#select = ["I001"]

[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
Expand Down
3 changes: 2 additions & 1 deletion src/cogs/loops/ideas.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

import discord
import pandas as pd
import util.vars
from bs4 import BeautifulSoup
from discord.ext import commands
from discord.ext.tasks import loop

import util.vars
from util.db import update_db
from util.disc_util import get_channel, get_tagged_users
from util.vars import config, data_sources, get_json_data
Expand Down
3 changes: 2 additions & 1 deletion src/cogs/loops/reddit.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@

import asyncpraw
import pandas as pd
import util.vars
from discord import Embed
from discord.ext import commands
from discord.ext.tasks import loop

import util.vars
from util.db import update_db
from util.disc_util import get_channel, get_webhook
from util.vars import config, data_sources
Expand Down

0 comments on commit 65a0d7e

Please sign in to comment.