From 4e2cf1c7e37e39872e15cf88d6956e19fd68dad9 Mon Sep 17 00:00:00 2001 From: xumia Date: Fri, 1 Jul 2022 09:35:51 +0000 Subject: [PATCH] Fix the build failure caused by function format issue --- sonic_installer/bootloader/bootloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic_installer/bootloader/bootloader.py b/sonic_installer/bootloader/bootloader.py index 42ed8a54b63..91dcaf46653 100644 --- a/sonic_installer/bootloader/bootloader.py +++ b/sonic_installer/bootloader/bootloader.py @@ -61,7 +61,7 @@ def set_fips(self, image, enable): """set fips""" raise NotImplementedError - def get_fips(self, image) + def get_fips(self, image): """returns true if fips set""" raise NotImplementedError