Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ name = "choreographer"
description = "Devtools Protocol implementation for chrome."
readme = "README.md"
requires-python = ">=3.8"
license = { "file" = "LICENSE.md" }
license = "MIT"
license-files = [ "LICENSE.md" ]
dynamic = ["version"]
authors = [
{name = "Andrew Pikul", email="ajpikul@gmail.com"},
Expand Down
2 changes: 1 addition & 1 deletion src/choreographer/cli/_cli_utils_no_qa.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# ruff has line-level and file-level QA suppression
# so lets give diagnose a separate file

# ruff: noqa: PLR0915, C901, S603, BLE001, S607, PERF203, TRY002, T201, PLR0912, SLF001
# ruff: noqa: PLR0915, C901, BLE001, S607, PERF203, TRY002, T201, PLR0912, SLF001
# ruff: noqa: PLC0415
# ruff: noqa: F401, ERA001 # temporary, sync
# ruff: noqa: PLC0415 - import at time of file
Expand Down
Loading