Black: fix formatting for black errors

These files got missed out of review due to a local version of black
being out-of-date. Re-ran against latest black to pass the build.

Signed-off-by: Benjamin Copeland <ben.copeland@linaro.org>
diff --git a/automated/lib/android_ui_wifi.py b/automated/lib/android_ui_wifi.py
index 32e7dd8..28462ef 100755
--- a/automated/lib/android_ui_wifi.py
+++ b/automated/lib/android_ui_wifi.py
@@ -9,14 +9,14 @@
 def set_wifi_state(dut, turn_on):
     """Turn WiFi on or off.
 
-        This checks the current WiFi settings and turns it on or off. It does
-        nothing if the settings are already in the desired state.
+    This checks the current WiFi settings and turns it on or off. It does
+    nothing if the settings are already in the desired state.
 
-        Parameters:
-            dut (Device): The device object.
-            enabled: Boolean, true for on, false for off
-        Raises:
-            DeviceCommandError: If the UI automation fails.
+    Parameters:
+        dut (Device): The device object.
+        enabled: Boolean, true for on, false for off
+    Raises:
+        DeviceCommandError: If the UI automation fails.
     """
     # Open the Wi-Fi settings
     adb(
@@ -76,7 +76,10 @@
     )
     args = parser.parse_args()
 
-    if args.ACTION[0] != "set_wifi_state" or args.ACTION[1] not in ("on", "off",):
+    if args.ACTION[0] != "set_wifi_state" or args.ACTION[1] not in (
+        "on",
+        "off",
+    ):
         print(
             "ERROR: Specified ACTION is not supported: {}".format(args.ACTION),
             file=sys.stderr,