Skip to content

Commit 117ba71

Browse files
chore: empty (#3036)
* chore: empty * style(pre-commit): auto fixes from pre-commit.com hooks --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent e0cef60 commit 117ba71

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ These changes are available on the `master` branch, but have not yet been releas
2121
### Removed
2222

2323
## [2.7.0] - 2025-12-24
24+
2425
### Added
2526

2627
- Added `Attachment.read_chunked` and added optional `chunksize` argument to
@@ -325,6 +326,7 @@ These changes are available on the `master` branch, but have not yet been releas
325326
([#2986](https://github.com/Pycord-Development/pycord/pull/2986))
326327
- Removed deprecated support for `Option` in `BridgeCommand`, use `BridgeOption`
327328
instead. ([#2731](https://github.com/Pycord-Development/pycord/pull/2731))
329+
328330
## [2.7.0rc2] - 2025-10-22
329331

330332
### Added

scripts/discord_release_notification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def send_webhook(webhook_url: str, content: str) -> None:
7878
},
7979
method="POST",
8080
)
81-
with urllib.request.urlopen(req) as resp: # nosec - not applicable
81+
with urllib.request.urlopen(req) as resp: # nosec - not applicable
8282
if resp.status >= 300:
8383
raise RuntimeError(f"Webhook post failed with status {resp.status}")
8484

scripts/release_rtd_versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def sync_versions(project: str, token: str) -> None:
4444
},
4545
method="POST",
4646
)
47-
with urllib.request.urlopen(req) as resp: # nosec - not applicable
47+
with urllib.request.urlopen(req) as resp: # nosec - not applicable
4848
if resp.status >= 300:
4949
raise RuntimeError(
5050
f"Sync versions failed for {project} with status {resp.status}"
@@ -63,7 +63,7 @@ def activate_version(project: str, docs_version: str, hidden: bool, token: str)
6363
},
6464
method="PATCH",
6565
)
66-
with urllib.request.urlopen(req) as resp: # nosec - not applicable
66+
with urllib.request.urlopen(req) as resp: # nosec - not applicable
6767
if resp.status >= 300:
6868
raise RuntimeError(
6969
f"Activating version {docs_version} for {project} failed with status {resp.status}"

0 commit comments

Comments
 (0)