PythonRMV/pyrmv/enums/search_mode.py

14 lines
355 B
Python
Raw Normal View History

2022-10-06 16:04:03 +03:00
from enum import auto
from .auto_name import AutoName
class SearchMode(AutoName):
"""Enumeration used to declare types of HIM search modes."""
MATCH = auto()
"Iterate over all trips to find HIM messages."
NOMATCH = auto()
"Iterate over all HIM messages available."
TFMATCH = auto()
"Uses filters defined `metas` parameter."