File: __init__.py

package info (click to toggle)
python-ical 12.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,776 kB
  • sloc: python: 15,157; sh: 9; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 226 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
"""Compatibility layer for fixing invalid ical files.

This module provides a compatibility layer for handling invalid iCalendar files.
"""

from .make_compat import enable_compat_mode

__all__ = [
    "enable_compat_mode",
]