mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
25 lines
506 B
Python
25 lines
506 B
Python
|
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||
|
|
||
|
|
||
|
class Flag(XmlModel):
|
||
|
XML_TAG = None
|
||
|
|
||
|
def __init__(self, flag, **kwargs):
|
||
|
super().__init__(flag=flag, **kwargs)
|
||
|
|
||
|
class FlagChoices(Enum):
|
||
|
ENABLE = "enable"
|
||
|
DISABLE = "disable"
|
||
|
|
||
|
flag: FlagChoices = Field(
|
||
|
xml_set_tag=True,
|
||
|
)
|
||
|
|
||
|
arch: Optional[str] = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
repository: Optional[str] = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|