mirror of
https://github.com/SELinuxProject/setools
synced 2025-05-16 23:29:16 +00:00
* Remove "Model" from names of model classes. * Remove remaining *_detail() functions. * Add typing. * Make models dir a package. * Update for superclass data() method as fallback. * Switch to match/case statements. Signed-off-by: Chris PeBenito <pebenito@ieee.org>
9 lines
500 B
Python
9 lines
500 B
Python
# SPDX-License-Identifier: LGPL-2.1-only
|
|
|
|
from .boolean import boolean_detail, boolean_detail_action, boolean_tooltip
|
|
from .objclass import objclass_detail, objclass_detail_action, objclass_tooltip
|
|
from .role import role_detail, role_detail_action, role_tooltip
|
|
from .typeattr import (typeattr_detail, typeattr_detail_action, typeattr_tooltip)
|
|
from .type import (type_detail, type_or_attr_detail, type_detail_action,
|
|
type_or_attr_detail_action, type_tooltip, type_or_attr_tooltip)
|