mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-20 14:00:38 +00:00
NAN is sometimes used by some programmers when numpy was 1.x but now on 2.x the caps version is disallowed.
Added the caps conversion to lower case nan to fix that automatically. Source: https://numpy.org/doc/2.0/reference/constants.html?utm_source=chatgpt.com NaN and NAN are aliases of nan.
This commit is contained in:
@@ -46,6 +46,7 @@ class StrategyUpdater:
|
||||
"aliases": set(),
|
||||
"replacements": [
|
||||
("NaN", "nan"),
|
||||
("NAN", "nan"),
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user