Skip to content

Commit

Permalink
Merge pull request #528 from kitsuyui/add-times-to-init
Browse files Browse the repository at this point in the history
Make methods in times available at the top level of human_readable
  • Loading branch information
staticdev authored Jan 29, 2023
2 parents 737ce06 + f3b4d40 commit 21bb55d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/human_readable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,22 @@
from human_readable.numbers import int_word
from human_readable.numbers import ordinal
from human_readable.numbers import scientific_notation
from human_readable.times import date
from human_readable.times import date_time
from human_readable.times import day
from human_readable.times import precise_delta
from human_readable.times import time_delta
from human_readable.times import time_of_day
from human_readable.times import timing
from human_readable.times import year


__all__ = [
"activate",
"ap_number",
"date",
"date_time",
"day",
"deactivate",
"file_size",
"fractional",
Expand All @@ -26,4 +34,8 @@
"ordinal",
"precise_delta",
"scientific_notation",
"time_delta",
"time_of_day",
"timing",
"year",
]

0 comments on commit 21bb55d

Please sign in to comment.