view PerfsDb/DbSize.py @ 498:62f37c13d4d0

new tests for modifications after sanity checks cleanup
author Alain Mazy <am@osimis.io>
date Mon, 26 Sep 2022 18:57:27 +0200
parents df1f9946571c
children
line wrap: on
line source

from enum import Enum

class DbSize(Enum):
    Small = 1
    Large = 2
    Tiny = 3
    Medium = 4