Merge aa/type-cleanup-py (work by marios, aa, wolv)

This commit is contained in:
TrainDoctor
2023-10-25 19:47:33 -07:00
parent dacd2c19eb
commit a7669799bc
27 changed files with 571 additions and 439 deletions
+6
View File
@@ -0,0 +1,6 @@
from enum import Enum
class UserType(Enum):
HOST_USER = 1
EFFECTIVE_USER = 2
ROOT = 3