From f7463dcae83bb9c54b1161ebf579dded5099393e Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Tue, 26 May 2026 18:42:49 +0200 Subject: [PATCH] fix: Fix pre-commit CI failures - Fix CHANGELOG.md missing trailing newline - Add explicit src_paths to isort config for consistent first-party detection in monorepo ref STREAM-1046 Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 1 - clients/python/pyproject.toml | 1 + integration_tests/pyproject.toml | 1 + pyproject.toml | 1 + 4 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43a9aa8b..934e8b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,4 +87,3 @@ ### Other - fix(scheduler) Make schedule changes take effect immediately by @markstory in [#590](https://github.com/getsentry/taskbroker/pull/590) - diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index 8c577338..f46ddadf 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -64,3 +64,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = ["src", "../../integration_tests"] diff --git a/integration_tests/pyproject.toml b/integration_tests/pyproject.toml index b927ee77..12328dd4 100644 --- a/integration_tests/pyproject.toml +++ b/integration_tests/pyproject.toml @@ -69,3 +69,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = [".", "../clients/python/src"] diff --git a/pyproject.toml b/pyproject.toml index 8a839d4b..dc043e6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,3 +71,4 @@ target-version = ['py311'] profile = "black" line_length = 100 lines_between_sections = 1 +src_paths = ["integration_tests", "clients/python/src"]