chore: Remove __futures__ import and corresponding ruff skips

This commit is contained in:
Matthias
2024-10-05 11:32:57 +02:00
parent 1ad4f0c9b5
commit 3fe97e1709
2 changed files with 0 additions and 4 deletions

View File

@@ -2,8 +2,6 @@
Helpers when analyzing backtest data
"""
from __future__ import annotations
import logging
import typing
from copy import copy

View File

@@ -157,8 +157,6 @@ extend-ignore = [
"S607", # Starting a process with a partial executable path
"S608", # Possible SQL injection vector through string-based query construction
"NPY002", # Numpy legacy random generator
"UP006", # non-pep585-annotation
"UP007", # non-pep604-annotation
]
[tool.ruff.lint.mccabe]