chore: Mypy-exclusions to account for ta-lib import problem

This commit is contained in:
Matthias
2025-05-12 18:22:01 +02:00
parent 0228ec796b
commit 3fb6bc888b
3 changed files with 8 additions and 0 deletions

View File

View File

@@ -206,6 +206,14 @@ plugins = [
module = "tests.*" module = "tests.*"
ignore_errors = true ignore_errors = true
[[tool.mypy.overrides]]
module = [
"freqtrade.templates.*",
"tests.strategy.strats"
]
# Disable attr-defined check due to ta-lib not having type stubs
disable_error_code = "attr-defined"
[tool.pyright] [tool.pyright]
include = ["freqtrade", "ft_client"] include = ["freqtrade", "ft_client"]
exclude = [ exclude = [

View File