From ccfd6bdaf8e0822caa715c4306ca799cd96527ea Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Tue, 28 Apr 2026 10:33:31 +0200 Subject: [PATCH 1/2] Specify license Adds license and fixes license specifiers according to https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0cff85d9..02ca206e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, From 98d0d4aff38d4fc0f2111696e80f34356cd750ca Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Tue, 28 Apr 2026 10:34:51 +0200 Subject: [PATCH 2/2] Remove redundant noqa code --- src/choreographer/cli/_cli_utils_no_qa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/choreographer/cli/_cli_utils_no_qa.py b/src/choreographer/cli/_cli_utils_no_qa.py index 562c06aa..4b6a7bda 100644 --- a/src/choreographer/cli/_cli_utils_no_qa.py +++ b/src/choreographer/cli/_cli_utils_no_qa.py @@ -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