From 1e446e6f80d380c33c177762f2a8c625dcce25b2 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Sat, 8 Jul 2023 18:38:45 +0200 Subject: [PATCH] config/state: remove superflous attrs from Profile, as they already exist in SparseProfile --- config/scheme.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/scheme.py b/config/scheme.py index a5846ba..605dca6 100644 --- a/config/scheme.py +++ b/config/scheme.py @@ -23,14 +23,12 @@ class SparseProfile(DictScheme): class Profile(SparseProfile): - parent: Optional[str] device: str flavour: str pkgs_include: list[str] pkgs_exclude: list[str] hostname: str username: str - password: Optional[str] size_extra_mb: Union[str, int]