Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions vobject/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,13 @@

"""

from .base import newFromBehavior, readOne, readComponents
from . import icalendar, vcard

from . import (
icalendar as icalendar,
vcard as vcard)
from .base import (
newFromBehavior,
readComponents as readComponents,
readOne as readOne)

# Package version
VERSION = "0.9.8"
Expand Down