Fix missing import

This commit is contained in:
Matthias 2024-07-03 12:01:22 +02:00
parent e5a453a1f3
commit d8eb6e59fa

View File

@ -2,5 +2,8 @@
Module to handle data operations for freqtrade
"""
from freqtrade.data import converter
# limit what's imported when using `from freqtrade.data import *`
__all__ = ["converter"]