aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2024-02-02 16:26:05 +0000
committerGravatar GitHub <[email protected]>2024-02-02 16:26:05 +0000
commite7b2b09fd7e4112634ebd4e4b72fcf619ec4b7d7 (patch)
tree7aab5eb4512fd7d322112d915ced1b9e41e0c946 /pydis_site/apps
parentMerge pull request #1219 from python-discord/dependabot/pip/sentry-sdk-1.40.0 (diff)
parentAppeased the linter (diff)
Merge pull request #1220 from python-discord/dependabot/pip/ruff-0.2.0
Bump ruff from 0.1.15 to 0.2.0
Diffstat (limited to 'pydis_site/apps')
-rw-r--r--pydis_site/apps/content/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/utils.py b/pydis_site/apps/content/utils.py
index 9c949a93..5a146e10 100644
--- a/pydis_site/apps/content/utils.py
+++ b/pydis_site/apps/content/utils.py
@@ -107,7 +107,7 @@ def fetch_tags() -> list[Tag]:
for file in repo.getmembers():
if "/bot/resources/tags" in file.path:
included.append(file)
- repo.extractall(folder, included)
+ repo.extractall(folder, included) # noqa: S202
for tag_file in Path(folder).rglob("*.md"):
name = tag_file.name