Skip to content

Commit 6bed973

Browse files
committed
Datetime fix
1 parent d4d979e commit 6bed973

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ from itertools import product, combinations, combinations_with_replacement, perm
457457
Datetime
458458
--------
459459
* **Module Datetime provides Date (`'<D>'`), Time (`'<T>'`) and Datetime (`'<DT>'`) classes.**
460-
* **Time and Datetime can be 'aware' (`'<a>'`), meaning they have defined timezone, or 'naive' (`'<n>'`), meaning they don't.
460+
* **Time and Datetime can be 'aware' (`'<a>'`), meaning they have defined timezone, or 'naive' (`'<n>'`), meaning they don't.**
461461

462462
```python
463463
$ pip3 install pytz
@@ -473,7 +473,7 @@ import pytz
473473
<TD> = timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)
474474
```
475475
* **`'fold=1'` means second pass in case of time jumping back for one hour.**
476-
* **Use `'<D/DT>.weekday()'` to get day of the week (Mon == 0).
476+
* **Use `'<D/DT>.weekday()'` to get day of the week (Mon == 0).**
477477

478478
### Now
479479
```python

0 commit comments

Comments
 (0)