etcher-be/elib_config

View on GitHub
elib_config/_types.py

Summary

Maintainability
A
0 mins
Test Coverage
# coding=utf-8
"""
Simple enum for common type names
"""


class Types:
    """
    Simple enum for common type names
    """
    string = 'string'
    table = 'table'
    array = 'array'
    integer = 'integer'
    float = 'float'
    boolean = 'boolean'
    array_of_tables = 'array of tables'
    path = 'path'