From b00e3af015e0f1340bbf68fbb5f117bc7fd9c43b Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Fri, 26 Jul 2024 16:48:56 -0400 Subject: [PATCH] Add pyproject.toml with black tool This allows editors to automatiicaly verify if blacken should be used or not with python scripts. Blacken is used with other LTTng projects as well. Change-Id: Ifbd84e97c6a3ce87259a6a7950a3256e757e3463 Signed-off-by: Kienan Stewart --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..28f4e25 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1 @@ +[tool.black] -- 2.34.1