mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
Remove dt_humanize
This commit is contained in:
parent
d48cff3b9a
commit
54c2febe1c
|
@ -1,7 +1,6 @@
|
|||
from freqtrade.util.datetime_helpers import (dt_floor_day, dt_from_ts, dt_humanize,
|
||||
dt_humanize_delta, dt_now, dt_ts, dt_ts_def,
|
||||
dt_ts_none, dt_utc, format_date, format_ms_time,
|
||||
shorten_date)
|
||||
from freqtrade.util.datetime_helpers import (dt_floor_day, dt_from_ts, dt_humanize_delta, dt_now,
|
||||
dt_ts, dt_ts_def, dt_ts_none, dt_utc, format_date,
|
||||
format_ms_time, shorten_date)
|
||||
from freqtrade.util.formatters import decimals_per_coin, fmt_coin, round_value
|
||||
from freqtrade.util.ft_precise import FtPrecise
|
||||
from freqtrade.util.measure_time import MeasureTime
|
||||
|
@ -12,7 +11,6 @@ from freqtrade.util.template_renderer import render_template, render_template_wi
|
|||
__all__ = [
|
||||
'dt_floor_day',
|
||||
'dt_from_ts',
|
||||
'dt_humanize',
|
||||
'dt_humanize_delta',
|
||||
'dt_now',
|
||||
'dt_ts',
|
||||
|
|
|
@ -2,7 +2,6 @@ import re
|
|||
from datetime import datetime, timezone
|
||||
from typing import Optional, Union
|
||||
|
||||
import arrow
|
||||
import humanize
|
||||
|
||||
from freqtrade.constants import DATETIME_PRINT_FORMAT
|
||||
|
@ -84,15 +83,6 @@ def dt_humanize_delta(dt: datetime):
|
|||
return humanize.naturaltime(dt)
|
||||
|
||||
|
||||
def dt_humanize(dt: datetime, **kwargs) -> str:
|
||||
"""
|
||||
Return a humanized string for the given datetime.
|
||||
:param dt: datetime to humanize
|
||||
:param kwargs: kwargs to pass to arrow's humanize()
|
||||
"""
|
||||
return arrow.get(dt).humanize(**kwargs)
|
||||
|
||||
|
||||
def format_date(date: Optional[datetime]) -> str:
|
||||
"""
|
||||
Return a formatted date string.
|
||||
|
|
Loading…
Reference in New Issue
Block a user