mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
fixed mypy issues, seriosuly...
This commit is contained in:
parent
58879ff012
commit
1897a1cb6a
|
@ -17,7 +17,6 @@ import tempfile
|
|||
import os
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
@ -97,7 +96,7 @@ class StrategyResolver(object):
|
|||
strategy_name = os.path.splitext(name)[0]
|
||||
|
||||
# register temp path with the bot
|
||||
abs_paths.insert(0, temp.absolute())
|
||||
abs_paths.insert(0, str(temp.resolve()))
|
||||
|
||||
for path in abs_paths:
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue
Block a user