2022-07-23 18:35:42 +00:00
|
|
|
import enum
|
|
|
|
|
2022-08-29 18:24:42 +00:00
|
|
|
__all__ = ["TaskType"]
|
2022-07-23 18:35:42 +00: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 17:22:27 +00:00
|
|
|
SCHEDULES = enum.auto()
|
2022-07-23 18:35:42 +00:00
|
|
|
UFORA_ANNOUNCEMENTS = enum.auto()
|