Skip to content

Commit

Permalink
Formatting with black.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachaa-Thanasius committed Sep 19, 2023
1 parent 346ffc8 commit deae9f7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exts/fandom_wiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async def load_all_wiki_pages(self) -> None:
else:
continue

LOGGER.info("All wiki names: %s", list(self.all_wikis.keys()) )
LOGGER.info("All wiki names: %s", list(self.all_wikis.keys()))

@commands.hybrid_command()
@commands.cooldown(1, 5, commands.cooldowns.BucketType.user)
Expand Down
1 change: 1 addition & 0 deletions exts/ff_metadata/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ class AO3SeriesView(PaginatedSelectView[AO3.Work]):
series : :class:`AO3.Series`
The object holding metadata about an AO3 series and the works within.
"""

def __init__(self, author_id: int, series: AO3.Series, *, timeout: float | None = 180) -> None:
self.series = series
assert is_ao3_work_list(work_list := series.work_list) # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion exts/patreon.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ async def get_current_actual_patrons(self) -> None:
# Get data from individual members of the campaign.
cursor = ""
members: list[PatreonMember] = []
LOGGER.info("Campaign: %s", campaigns['data'][0])
LOGGER.info("Campaign: %s", campaigns["data"][0])

while True:
request_url = (
Expand Down
1 change: 0 additions & 1 deletion exts/snowball/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ async def upsert_record(self, conn: Pool_alias | Connection_alias) -> asyncpg.Re
return await conn.fetchrow(snowball_upsert_query, *args)



class GuildSnowballSettings(NamedTuple):
"""Record-like structure to hold a guild's snowball settings.
Expand Down

0 comments on commit deae9f7

Please sign in to comment.