Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.job_metrics.safety

from enum import Enum


[docs]class Safety(Enum): UNSAFE = 2 POTENTIALLY_SENSITVE = 4 SAFE = 6
DEFAULT_SAFETY = Safety.POTENTIALLY_SENSITVE __all__ = ( "DEFAULT_SAFETY", "Safety", )