File: ical.py

package info (click to toggle)
python-caldav 1.3.9-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 640 kB
  • sloc: python: 6,824; makefile: 91; sh: 7
file content (14 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from caldav.lib.namespace import ns

from .base import BaseElement
from .base import ValuedBaseElement

# Properties
class CalendarColor(ValuedBaseElement):
    tag = ns("I", "calendar-color")


class CalendarOrder(ValuedBaseElement):
    tag = ns("I", "calendar-order")