Spaces:
Runtime error
Runtime error
File size: 528 Bytes
17a4159 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
[project]
name = "light-switcher"
version = "0.1.0"
description = "Finegrain Light Switcher (Gradio)"
authors = [
{ name = "Pierre Chapuis", email = "[email protected]" }
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"UP", # pyupgrade
"A", # flake8-builtins
"B", # flake8-bugbear
"Q", # flake8-quotes
"I", # isort
]
[tool.pyright]
include = ["app.py"]
exclude = ["**/__pycache__"]
|