Skip to content

Commit

Permalink
feat: lower animation_frame in title
Browse files Browse the repository at this point in the history
  • Loading branch information
TimNekk committed Jan 6, 2023
1 parent d54f782 commit 8b63b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tgmetrics/services/graphs/crud.py
Expand Up @@ -21,7 +21,7 @@ def get_users_total(user_repository: UserRepository, group_by: GroupBy) -> Figur
case GroupBy.HOUR:
x_axis, animation_frame, max_x = hour, day, 24

title = f"Всего пользователей за {animation_frame}"
title = f"Всего пользователей за {animation_frame.lower()}"

data_frame = DataFrame.from_records(user_repository.get_count_query(group_by),
columns=[y_axis, x_axis, animation_frame])
Expand Down

0 comments on commit 8b63b56

Please sign in to comment.