File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 27
27
28
28
class _StorageIndex :
29
29
def __init__ (self ):
30
- self ._storages = dict (
31
- caldav = "vdirsyncer.storage.dav.CalDAVStorage" ,
32
- carddav = "vdirsyncer.storage.dav.CardDAVStorage" ,
33
- filesystem = "vdirsyncer.storage.filesystem.FilesystemStorage" ,
34
- http = "vdirsyncer.storage.http.HttpStorage" ,
35
- singlefile = "vdirsyncer.storage.singlefile.SingleFileStorage" ,
36
- google_calendar = "vdirsyncer.storage.google.GoogleCalendarStorage" ,
37
- google_contacts = "vdirsyncer.storage.google.GoogleContactsStorage" ,
38
- )
30
+ self ._storages = {
31
+ " caldav" : "vdirsyncer.storage.dav.CalDAVStorage" ,
32
+ " carddav" : "vdirsyncer.storage.dav.CardDAVStorage" ,
33
+ " filesystem" : "vdirsyncer.storage.filesystem.FilesystemStorage" ,
34
+ " http" : "vdirsyncer.storage.http.HttpStorage" ,
35
+ " singlefile" : "vdirsyncer.storage.singlefile.SingleFileStorage" ,
36
+ " google_calendar" : "vdirsyncer.storage.google.GoogleCalendarStorage" ,
37
+ " google_contacts" : "vdirsyncer.storage.google.GoogleContactsStorage" ,
38
+ }
39
39
40
40
def __getitem__ (self , name ):
41
41
item = self ._storages [name ]
You can’t perform that action at this time.
0 commit comments