Skip to content

Commit 77489be

Browse files
committed
bump version
1 parent b8df285 commit 77489be

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.0-dev13"
1+
__version__ = "4.0.0-dev14"
22

33

44
import asyncio

cogs/modmail.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,7 @@ async def blocked(self, ctx):
17191719

17201720
if len(user_embeds) > 1:
17211721
for n, em in enumerate(user_embeds):
1722-
em.title = f'{em.title} [{n + 1}]'
1722+
em.title = f"{em.title} [{n + 1}]"
17231723

17241724
role_embeds = [discord.Embed(title="Blocked Roles", color=self.bot.main_color, description="")]
17251725

@@ -1743,7 +1743,7 @@ async def blocked(self, ctx):
17431743

17441744
if len(role_embeds) > 1:
17451745
for n, em in enumerate(role_embeds):
1746-
em.title = f'{em.title} [{n + 1}]'
1746+
em.title = f"{em.title} [{n + 1}]"
17471747

17481748
session = EmbedPaginatorSession(ctx, *user_embeds, *role_embeds)
17491749

cogs/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def format_cog_help(self, cog, *, no_cog=False):
100100

101101
if len(embeds) > 1:
102102
for n, em in enumerate(embeds):
103-
em.set_author(name=f'{em.author.name} [{n + 1}]', icon_url=em.author.icon_url)
103+
em.set_author(name=f"{em.author.name} [{n + 1}]", icon_url=em.author.icon_url)
104104

105105
return embeds
106106

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ extend-exclude = '''
2121

2222
[tool.poetry]
2323
name = 'Modmail'
24-
version = '4.0.0-dev13'
24+
version = '4.0.0-dev14'
2525
description = "Modmail is similar to Reddit's Modmail, both in functionality and purpose. It serves as a shared inbox for server staff to communicate with their users in a seamless way."
2626
license = 'AGPL-3.0-only'
2727
authors = [

0 commit comments

Comments
 (0)