This commit is contained in:
manuel 2024-07-15 12:37:11 +00:00
parent d8469f4814
commit 9a0d199951
1 changed files with 3 additions and 5 deletions

View File

@ -225,16 +225,14 @@ class BuildServer(BuildBase):
""" This class will ensure the Server builds are built """ """ This class will ensure the Server builds are built """
def __init__(self, sbase, sarch): def __init__(self, sbase, sarch):
""" """
init the building, super will Initiate the building process for the Server.
ensure that the method resolution order (MRO) is followed Call super().__init__() with appropriate parameters.
correctly, allowing for a smooth inheritance hierarchy
""" """
super().__init__(sbase, sarch, self.server_helper) super().__init__(sbase, sarch, self.server_helper)
def server_helper(self): def server_helper(self):
""" """
The helper functions to ensure the server requirements are Helper method to assist in server-specific build tasks.
used
""" """
arch_suffix = self.sarch[1:] arch_suffix = self.sarch[1:]
cmd_list = None cmd_list = None