build: Add docstrings for classes

This commit is contained in:
Mykola Grymalyuk
2023-03-30 11:46:44 -06:00
parent 1bf3e0e2a4
commit 841bcb72c3
11 changed files with 92 additions and 14 deletions
+6 -1
View File
@@ -1,5 +1,5 @@
# Class for handling CPU and Firmware Patches, invocation from build.py
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2023, Dhinak G, Mykola Grymalyuk
import shutil
import logging
@@ -13,6 +13,11 @@ from data import smbios_data, cpu_data
class BuildFirmware:
"""
Build Library for CPU and Firmware Support
Invoke from build.py
"""
def __init__(self, model: str, global_constants: constants.Constants, config: dict) -> None:
self.model: str = model