uebung1 #2

Closed
gubsersinia wants to merge 6 commits from uebung1 into master
4 changed files with 24 additions and 0 deletions

17
.gitignore vendored
View File

@ -0,0 +1,17 @@
# Python
.venv/
__pycache__/
*.pyc
# tooling
.pytest_cache/
.ruff_cache/
# editors
.idea/
# OS noise
.DS_Store
# Critical
.env

View File

@ -0,0 +1,2 @@
[tool.pytest.ini_options]
pythonpath = ["."]

View File

@ -0,0 +1,4 @@
ruff == 0.15.1
black == 26.1.0
pytest == 9.0.2
pre-commit == 4.5.1

View File

@ -1,3 +1,4 @@
# small change for pull request
def addition(a=1, b=2):
return a + b