2022-07-23 20:35:42 +02:00
|
|
|
import enum
|
|
|
|
|
2022-08-29 20:24:42 +02:00
|
|
|
__all__ = ["TaskType"]
|
2022-07-23 20:35:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
# There is a bug in typeshed that causes an incorrect PyCharm warning
|
|
|
|
# https://github.com/python/typeshed/issues/8286
|
|
|
|
# noinspection PyArgumentList
|
|
|
|
class TaskType(enum.IntEnum):
|
|
|
|
"""Enum for the different types of tasks"""
|
|
|
|
|
|
|
|
BIRTHDAYS = enum.auto()
|
2022-09-17 19:22:27 +02:00
|
|
|
SCHEDULES = enum.auto()
|
2022-07-23 20:35:42 +02:00
|
|
|
UFORA_ANNOUNCEMENTS = enum.auto()
|