This commit is contained in:
xmatthias 2018-05-31 21:08:11 +02:00
parent 4eb55acdbc
commit 69006b8fe8
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ This module contains the class to persist trades into SQLite
import logging
from datetime import datetime
from decimal import Decimal, getcontext
from typing import Dict, Optional, Any
from typing import Dict, Optional
import arrow
from sqlalchemy import (Boolean, Column, DateTime, Float, Integer, String,

View File

@ -1,7 +1,7 @@
"""
This module contains class to manage RPC communications (Telegram, Slack, ...)
"""
from typing import Any, Optional, List
from typing import Any, List
import logging
from freqtrade.rpc.telegram import Telegram