diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-19 23:17:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-19 23:17:51 +0300 |
commit | 5fc68a09752e47e61b0134146ff6795c7295d131 (patch) | |
tree | d8c76d3c2f1653eb68241ed762e7b00ee9c8c0f9 /vk/tracking/__init__.py | |
parent | docs: update (diff) | |
download | vk-scripts-5fc68a09752e47e61b0134146ff6795c7295d131.tar.gz vk-scripts-5fc68a09752e47e61b0134146ff6795c7295d131.zip |
make the terminology more consistent
"Online sessions" instead of "online periods/streaks/durations", "time
ranges" instead of "date ranges", etc.
Diffstat (limited to 'vk/tracking/__init__.py')
-rw-r--r-- | vk/tracking/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vk/tracking/__init__.py b/vk/tracking/__init__.py index cfc80ea..0404094 100644 --- a/vk/tracking/__init__.py +++ b/vk/tracking/__init__.py @@ -2,7 +2,7 @@ # This file is licensed under the terms of the MIT License. # See LICENSE.txt for details. -from .online_streaks import OnlineStreakEnumerator, Weekday +from .online_sessions import OnlineSessionEnumerator, Weekday from .status_tracker import StatusTracker -__all__ = 'online_streaks', 'status_tracker', +__all__ = 'online_sessions', 'status_tracker', |