PEL: Change BaseBIOSTable property signature

The D-Bus signature of the BaseBIOSTable property provided by the
BIOSConfigManager app added another string into its D-Bus signature,
which is now a{s(sbsssvva(svs))}.

Before it was a{s(sbsssvva(sv))}.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: Ia74f8f098a84d212db100a3886b4dd876c29cc08
diff --git a/extensions/openpower-pels/dbus_types.hpp b/extensions/openpower-pels/dbus_types.hpp
index 0b388e3..8e9797e 100644
--- a/extensions/openpower-pels/dbus_types.hpp
+++ b/extensions/openpower-pels/dbus_types.hpp
@@ -9,13 +9,13 @@
 namespace openpower::pels
 {
 
-using BiosAttributes =
-    std::map<std::string,
-             std::tuple<std::string, bool, std::string, std::string,
-                        std::string, std::variant<int64_t, std::string>,
-                        std::variant<int64_t, std::string>,
-                        std::vector<std::tuple<
-                            std::string, std::variant<int64_t, std::string>>>>>;
+using BiosAttributes = std::map<
+    std::string,
+    std::tuple<
+        std::string, bool, std::string, std::string, std::string,
+        std::variant<int64_t, std::string>, std::variant<int64_t, std::string>,
+        std::vector<std::tuple<std::string, std::variant<int64_t, std::string>,
+                               std::string>>>>;
 
 using DBusValue =
     std::variant<std::string, bool, std::vector<uint8_t>,