From 327e71da447a389a65969d126364d319abcc8781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20M=C3=BCller=20=28ChaoticByte=29?= Date: Sun, 10 Sep 2023 12:05:36 +0200 Subject: [PATCH] Changed examples in README --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0259f93..878a2e9 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,10 @@ notime is a simple python library that represents the daytime on a scale of `0` ```python >>> from notime import notime ->>> a = notime(10000) ->>> a -10000 ->>> b = notime.from_time(15, 30, 0, 0) +>>> a = notime(50000000) +>>> b = notime.from_time(12, 5, 0, 0) >>> b -64583333 +50347222 >>> a + b -64593333 +347222 ```