add missing import pytz in example

The example uses the pytz module:
event.add('dtstart', datetime(2005,4,4,8,0,0,tzinfo=pytz.utc))
But doesn't import it
pull/503/head
Abe Hanoka 2022-12-19 14:24:40 -05:00 zatwierdzone przez GitHub
rodzic 16f9015e16
commit c32edb0b32
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -263,6 +263,7 @@ Init the calendar::
>>> cal = Calendar()
>>> from datetime import datetime
>>> import pytz
Some properties are required to be compliant::