meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I441b95b267f2faac23675ec0703aa5474d189be7
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/host_condition_gpio/meson.build b/host_condition_gpio/meson.build
index 24d03e3..7381310 100644
--- a/host_condition_gpio/meson.build
+++ b/host_condition_gpio/meson.build
@@ -1,27 +1,28 @@
-inc_dirs = [ include_directories('../') ]
+inc_dirs = [include_directories('../')]
 
 filesystem = import('fs')
 gpioplus = dependency('gpioplus')
-gpiodcxx = dependency(
-    'libgpiodcxx',
-    fallback: ['libgpiod', 'gpiodcxx_dep']
-)
+gpiodcxx = dependency('libgpiodcxx', fallback: ['libgpiod', 'gpiodcxx_dep'])
 
 executable(
     'phosphor-host-condition-gpio',
     'host_condition.cpp',
     'host_condition_main.cpp',
     dependencies: [
-        gpioplus, sdbusplus, sdeventplus, phosphorlogging,
-        phosphordbusinterfaces, gpiodcxx
+        gpioplus,
+        sdbusplus,
+        sdeventplus,
+        phosphorlogging,
+        phosphordbusinterfaces,
+        gpiodcxx,
     ],
-    include_directories : inc_dirs,
+    include_directories: inc_dirs,
     implicit_include_directories: true,
-    install: true
+    install: true,
 )
 
 filesystem.copyfile(
-  'phosphor-host-condition-gpio@.service',
-  install_dir: systemd_system_unit_dir,
-  install: true
+    'phosphor-host-condition-gpio@.service',
+    install_dir: systemd_system_unit_dir,
+    install: true,
 )