Update version of Black to 22.3.0

Update version of Black to 22.3.0 due to updated dependencies.
Updates to fix reported issues due to new version.

Signed-off-by: Jonas Ohlsson <jonas.ohlsson@arm.com>
Change-Id: I60056aae452093ce8dcea1f499ecced22b25eef1
diff --git a/ethosu/vela/architecture_features.py b/ethosu/vela/architecture_features.py
index e79ed72..08ff260 100644
--- a/ethosu/vela/architecture_features.py
+++ b/ethosu/vela/architecture_features.py
@@ -647,7 +647,9 @@
 
         else:
             raise CliOptionError(
-                "--system-config", self.system_config, f"Section {sys_cfg_section} not found in Vela config file",
+                "--system-config",
+                self.system_config,
+                f"Section {sys_cfg_section} not found in Vela config file",
             )
 
         # read the memory mode
@@ -678,7 +680,9 @@
 
         else:
             raise CliOptionError(
-                "--memory-mode", self.memory_mode, f"Section {mem_mode_section} not found in Vela config file",
+                "--memory-mode",
+                self.memory_mode,
+                f"Section {mem_mode_section} not found in Vela config file",
             )
 
         # override sram to onchipflash
@@ -777,7 +781,8 @@
             # check for recursion loop
             if inheritance_section == section:
                 raise ConfigOptionError(
-                    "inherit", f"{inheritance_section}. This references its own section and recursion is not allowed",
+                    "inherit",
+                    f"{inheritance_section}. This references its own section and recursion is not allowed",
                 )
             result = self._read_config(inheritance_section, key, result, found)