From 3fe97e1709ec3daa8cb07139b360c5eaac5062d3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 5 Oct 2024 11:32:57 +0200 Subject: [PATCH] chore: Remove __futures__ import and corresponding ruff skips --- freqtrade/data/btanalysis.py | 2 -- pyproject.toml | 2 -- 2 files changed, 4 deletions(-) diff --git a/freqtrade/data/btanalysis.py b/freqtrade/data/btanalysis.py index ad90014c2..9e9e6b4de 100644 --- a/freqtrade/data/btanalysis.py +++ b/freqtrade/data/btanalysis.py @@ -2,8 +2,6 @@ Helpers when analyzing backtest data """ -from __future__ import annotations - import logging import typing from copy import copy diff --git a/pyproject.toml b/pyproject.toml index 98bda823a..ad1c02928 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]