We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a26b3e commit 24c05aaCopy full SHA for 24c05aa
2 files changed
pyproject.toml
@@ -17,10 +17,14 @@ dependencies = []
17
18
[project.optional-dependencies]
19
test = [
20
+ "black==25.1.0",
21
"build==1.2.2.post1",
22
"twine==6.1.0",
23
]
24
25
[project.urls]
26
Homepage = "https://github.com/remarkablemark/python_package_template"
27
Issues = "https://github.com/remarkablemark/python_package_template/issues"
28
+
29
+[tool.black]
30
+fast = true
src/python_package_template/template.py
@@ -1,4 +1,4 @@
1
-def hello(name: str="World") -> str:
+def hello(name: str = "World") -> str:
2
"""
3
Greet a name.
4
0 commit comments