Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Commit c19fbc0

Browse files
more ruff fixes
1 parent cecfc32 commit c19fbc0

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
rev: v0.14.6 # latest as of 11/21/2025
1515
hooks:
1616
- id: ruff
17-
args: []
17+
args: [--fix, --unsafe-fixes]
1818
- id: ruff-format
1919
- repo: local
2020
hooks:

src/capy_app/frontend/bot.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
"""Discord bot module for handling discord-related functionality."""
22

33
import json
4-
5-
# Standard library imports
64
import logging
75
import pathlib
86
import typing
97
from dataclasses import asdict
108
from datetime import datetime
119
from pathlib import Path
1210

13-
# Third-party imports
1411
import discord
15-
16-
# Local imports
1712
from backend.db.database import Database
1813
from discord.ext import commands, tasks
1914
from discord.ext.commands import Context

0 commit comments

Comments
 (0)