removed unused dataclasses

pull/187/head
Chris Veilleux 2019-06-20 11:55:55 -05:00
parent 2291892636
commit 56d70ee55e
1 changed files with 0 additions and 28 deletions

View File

@ -2,34 +2,6 @@ from dataclasses import dataclass
from typing import List
@dataclass
class Setting(object):
"""Representation of a Skill setting"""
id: str
setting_section_id: str
setting: str
setting_type: str
hidden: bool
display_order: int
hint: str = None
label: str = None
placeholder: str = None
options: str = None
default_value: str = None
value: str = None
@dataclass
class SettingSection(object):
"""Representation of a section from a Skill Setting"""
id: str
skill_version_id: str
section: str
display_order: int
description: str = None
settings: List[Setting] = None
@dataclass
class SkillVersion(object):
version: str