We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73650f9 commit 9afc693Copy full SHA for 9afc693
pyproject.toml
@@ -36,6 +36,7 @@ requests = { version ="^2.22.0", optional = true }
36
pytest = { version= "^8.0.0", optional = true }
37
pytest-benchmark = { version = "^4.0", optional = true }
38
flake8 = { version = "^5.0.4", optional = true }
39
+black = { version = "==25.11.0", optional = true }
40
41
[tool.poetry.extras]
42
dev = [
@@ -44,8 +45,12 @@ dev = [
44
45
"pytest",
46
"pytest-benchmark",
47
"requests",
48
+ "black",
49
]
50
51
+[tool.black]
52
+include = "(^datadog_lambda/.*\\.pyi?$|^tests/.*\\.pyi?$)"
53
+
54
[build-system]
55
requires = ["poetry-core>=1.0.0"]
56
build-backend = "poetry.core.masonry.api"
0 commit comments