Merge branch 'main' into integrate-training-from-sbb_pixelwise_segmentation

This commit is contained in:
kba 2025-10-16 20:50:16 +02:00
commit af5abb77fd
24 changed files with 2778 additions and 3122 deletions

View file

@ -54,3 +54,21 @@ where = ["src"]
[tool.coverage.run]
branch = true
source = ["eynollah"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
# disable unused imports
"F401",
# disable import order
"E402",
# disable unused variables
"F841",
# disable bare except
"E722",
]
[tool.ruff.format]
quote-style = "preserve"