Skip to content
Snippets Groups Projects
__init__.py 250 B
Newer Older
from src.detections.detection import *
from src.detections.date import *
from src.utils.subclasses import get_sublcasses

DETECTION_CLASSES_MAP = {
    detection_class.TYPE_NAME: detection_class
    for detection_class in get_sublcasses(Detection)
Michał Pogoda's avatar
Michał Pogoda committed
}