Changed examples in README

This commit is contained in:
Julian Müller (ChaoticByte) 2023-09-10 12:05:36 +02:00
parent 488785c0e8
commit 327e71da44

View file

@ -6,12 +6,10 @@ notime is a simple python library that represents the daytime on a scale of `0`
```python ```python
>>> from notime import notime >>> from notime import notime
>>> a = notime(10000) >>> a = notime(50000000)
>>> a >>> b = notime.from_time(12, 5, 0, 0)
10000
>>> b = notime.from_time(15, 30, 0, 0)
>>> b >>> b
64583333 50347222
>>> a + b >>> a + b
64593333 347222
``` ```