Skip to content

Commit

Permalink
📝 [Doc] README: update example with latest feature, and upgrade to v1…
Browse files Browse the repository at this point in the history
….2.10
  • Loading branch information
Hansimov committed Jan 27, 2025
1 parent 2b76ece commit 0b8f7b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ def test_dt_to_str():
dt3 = timedelta(seconds=3600 * 8 + 60 * 24 + 12)
logger.note(f"dt3: {logstr.success(dt_to_str(dt3))}")
dt4 = timedelta(seconds=3600 * 24 * 1 + 3600 * 8 + 60 * 24 + 12)
logger.note(f"dt4: {logstr.success(dt_to_str(dt4))}")
logger.note(f"dt4: {logstr.success(dt_to_str(dt4, precision=3))}")
dt5 = 360100.123
logger.note(f"dt5: {logstr.success(dt_to_str(dt5, precision=3))}")

t_ts = 1700000000
t_ts, t_str = unify_ts_and_str(t_ts)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tclogger"
version = "1.2.9.1"
version = "1.2.10"
authors = [
{ name="Hansimov" },
]
Expand Down

0 comments on commit 0b8f7b6

Please sign in to comment.