mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-01 22:58:12 +00:00
8 lines
219 B
Python
8 lines
219 B
Python
# SPDX-License-Identifier: LGPL-2.1-only
|
|
from typing import Final
|
|
|
|
from PyQt5 import QtCore
|
|
|
|
PolicyObjRole: Final[int] = QtCore.Qt.ItemDataRole.UserRole
|
|
ContextMenuRole: Final[int] = QtCore.Qt.ItemDataRole.UserRole + 1
|