uebung1 #2
17
.gitignore
vendored
17
.gitignore
vendored
@ -0,0 +1,17 @@
|
|||||||
|
# Python
|
||||||
|
.venv/
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# tooling
|
||||||
|
.pytest_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# editors
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# OS noise
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Critical
|
||||||
|
.env
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
[tool.pytest.ini_options]
|
||||||
|
pythonpath = ["."]
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
ruff == 0.15.1
|
||||||
|
black == 26.1.0
|
||||||
|
pytest == 9.0.2
|
||||||
|
pre-commit == 4.5.1
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
# small change for pull request
|
||||||
def addition(a=1, b=2):
|
def addition(a=1, b=2):
|
||||||
return a + b
|
return a + b
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user