Skip to content

Commit ef349e8

Browse files
committed
black format + update changelog
1 parent 9464c5d commit ef349e8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ however, insignificant breaking changes do not guarantee a major version bump, s
88

99
# [UNRELEASED]
1010

11+
Drops support for Python 3.9. Python 3.10 and Python 3.11 are now the only supported versions.
12+
1113
### Fixed
1214
- `?alias make/create` as aliases to `?alias add`. This improves continuity between the bot and its command structure. ([PR #3195](https://github.com/kyb3r/modmail/pull/3195))
1315
- Loading the blocked list with the `?blocked` command takes a long time when the list is large. ([PR #3242](https://github.com/kyb3r/modmail/pull/3242))
@@ -29,6 +31,7 @@ however, insignificant breaking changes do not guarantee a major version bump, s
2931

3032
### Changed
3133
- Repo moved to https://github.com/modmail-dev/modmail.
34+
- Channel name no longer shows `-0` if the user has migrated to the new username system.
3235
- Guild icons in embed footers and author urls now have a fixed size of 128. ([PR #3261](https://github.com/modmail-dev/modmail/pull/3261))
3336
- Discord.py internal logging is now enabled by default. ([PR #3216](https://github.com/modmail-dev/Modmail/pull/3216))
3437
- The confirm-thread-creation dialog now uses buttons instead of reactions. ([PR #3273](https://github.com/modmail-dev/Modmail/pull/3273))

core/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,7 @@ class DummyParam:
595595
"""
596596
A dummy parameter that can be used for MissingRequiredArgument.
597597
"""
598+
598599
def __init__(self, name):
599600
self.name = name
600601
self.displayed_name = name

0 commit comments

Comments
 (0)