🐛 Fix color_select.py example not changing embed color

This commit is contained in:
2024-08-03 15:59:36 +02:00
parent f1a8c2e31d
commit 191d1d2d9b
7 changed files with 40 additions and 9 deletions

View File

@@ -20,6 +20,7 @@ classifiers = [
requires-python = ">=3.11"
dependencies = [
"py-cord>=2.6.0",
"typing-extensions<5,>=4.4.0",
]
version = "0.1.0"
license = {text = "MIT"}
@@ -110,7 +111,9 @@ ignore = [
"ISC001", # Single line implicit string concatenation ("hi" "hey" -> "hihey")
"ISC002", # Multi line implicit string concatenation
"DOC501"
"DOC501",
"DOC201",
"PLR6301"
]
[tool.ruff.lint.isort]