♻️ Remove unused imports and update quality checks to target the current directory

This commit is contained in:
2025-03-08 22:03:34 +01:00
parent fdf2f8e718
commit 8533e4b23f
3 changed files with 3 additions and 5 deletions

View File

@@ -24,13 +24,13 @@ jobs:
include:
- check: format
name: "Format Check"
command: "uv run ruff format --check src"
command: "uv run ruff format --check ."
- check: lint
name: "Lint Check"
command: "uv run ruff check src"
command: "uv run ruff check ."
- check: basedpyright
name: "Type Check"
command: "uv run basedpyright src"
command: "uv run basedpyright ."
name: ${{ matrix.name }}

View File

@@ -7,7 +7,6 @@ This is a minimal example showing how to create slash commands.
"""
import os
from pydoc import describe
import discord
from dotenv import load_dotenv

View File

@@ -3,7 +3,6 @@
"""Example showing how to work with modals in Pycord REST."""
import asyncio
import os
from typing import Any