mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2025-01-21 07:28:24 +00:00
explicitly exports
to fix (mypy --strict) errors like: >> error: Module "sync_ics2gcal" does not explicitly export attribute "GoogleCalendarService"; implicit reexport disabled
This commit is contained in:
parent
80e15b0622
commit
787e9df642
@ -6,6 +6,39 @@ from .gcal import (
|
||||
EventData,
|
||||
EventList,
|
||||
EventTuple,
|
||||
EventDataKey,
|
||||
EventDateOrDateTime,
|
||||
EventDate,
|
||||
EventDateTime,
|
||||
EventsSearchResults,
|
||||
ACLRule,
|
||||
ACLScope,
|
||||
CalendarData,
|
||||
BatchRequestCallback,
|
||||
)
|
||||
|
||||
from .sync import CalendarSync
|
||||
from .sync import CalendarSync, ComparedEvents
|
||||
|
||||
__all__ = [
|
||||
"ical",
|
||||
"gcal",
|
||||
"sync",
|
||||
"CalendarConverter",
|
||||
"EventConverter",
|
||||
"DateDateTime",
|
||||
"GoogleCalendarService",
|
||||
"GoogleCalendar",
|
||||
"EventData",
|
||||
"EventList",
|
||||
"EventTuple",
|
||||
"EventDataKey",
|
||||
"EventDateOrDateTime",
|
||||
"EventDate",
|
||||
"EventDateTime",
|
||||
"EventsSearchResults",
|
||||
"ACLRule",
|
||||
"ACLScope",
|
||||
"CalendarData",
|
||||
"CalendarSync",
|
||||
"ComparedEvents",
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user