meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I97d2b9f5aff45464f71e805baef7d7d4941a286c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index 1dee2ab..5f7ca53 100644
--- a/meson.build
+++ b/meson.build
@@ -1,29 +1,29 @@
 project(
-    'phosphor-buttons', 'cpp',
+    'phosphor-buttons',
+    'cpp',
     version: '1.0.0',
     meson_version: '>=1.1.1',
-    default_options: [
-        'warning_level=3',
-        'werror=true',
-        'cpp_std=c++23',
-    ]
+    default_options: ['warning_level=3', 'werror=true', 'cpp_std=c++23'],
 )
 
 host_instances = get_option('host-instances')
 formatted_instances = host_instances.replace(' ', ', ')
 
 conf_data = configuration_data()
-conf_data.set('INSTANCES',formatted_instances)
+conf_data.set('INSTANCES', formatted_instances)
 conf_data.set_quoted('ID_LED_GROUP', get_option('id-led-group'))
 conf_data.set_quoted('POWER_BUTTON_PROFILE', get_option('power-button-profile'))
 conf_data.set('LONG_PRESS_TIME_MS', get_option('long-press-time-ms'))
 conf_data.set('LOOKUP_GPIO_BASE', get_option('lookup-gpio-base').allowed())
-conf_data.set('ENABLE_RESET_BUTTON_DO_WARM_REBOOT', get_option('reset-button-do-warm-reboot').allowed())
+conf_data.set(
+    'ENABLE_RESET_BUTTON_DO_WARM_REBOOT',
+    get_option('reset-button-do-warm-reboot').allowed(),
+)
 
 configure_file(
     input: 'meson_config.hpp.in',
     output: 'config.hpp',
-    configuration: conf_data
+    configuration: conf_data,
 )
 
 gpioplus_dep = dependency('gpioplus')
@@ -67,7 +67,7 @@
     include_directories: ['inc'],
     dependencies: deps,
     install: true,
-    install_dir: get_option('bindir')
+    install_dir: get_option('bindir'),
 )
 
 executable(
@@ -77,22 +77,23 @@
     include_directories: ['inc'],
     dependencies: deps,
     install: true,
-    install_dir: get_option('bindir')
+    install_dir: get_option('bindir'),
 )
 
 systemd = dependency('systemd')
 systemd_system_unit_dir = systemd.get_variable(
-        'systemdsystemunitdir',
-        pkgconfig_define: ['prefix', get_option('prefix')])
+    'systemdsystemunitdir',
+    pkgconfig_define: ['prefix', get_option('prefix')],
+)
 
 fs = import('fs')
 fs.copyfile(
     'service_files/phosphor-button-handler.service',
     install: true,
-    install_dir: systemd_system_unit_dir
+    install_dir: systemd_system_unit_dir,
 )
 fs.copyfile(
     'service_files/xyz.openbmc_project.Chassis.Buttons.service',
     install: true,
-    install_dir: systemd_system_unit_dir
+    install_dir: systemd_system_unit_dir,
 )
diff --git a/meson.options b/meson.options
index 0f394aa..92c5317 100644
--- a/meson.options
+++ b/meson.options
@@ -1,22 +1,22 @@
 option(
     'id-led-group',
-    type : 'string',
+    type: 'string',
     value: 'enclosure_identify',
-    description : 'The identify LED group name'
+    description: 'The identify LED group name',
 )
 
 option(
     'long-press-time-ms',
-    type : 'integer',
+    type: 'integer',
     value: 3000,
-    description : 'Time to long press the button'
+    description: 'Time to long press the button',
 )
 
 option(
     'lookup-gpio-base',
-    type : 'feature',
+    type: 'feature',
     value: 'enabled',
-    description : 'Look up the GPIO base value in /sys/class/gpio. Otherwise use a base of 0.'
+    description: 'Look up the GPIO base value in /sys/class/gpio. Otherwise use a base of 0.',
 )
 
 option(
@@ -24,19 +24,19 @@
     type: 'combo',
     choices: ['default', 'host_then_chassis_poweroff'],
     value: 'default',
-    description : 'Used to select a custom power button behavior profile.'
+    description: 'Used to select a custom power button behavior profile.',
 )
 
 option(
     'reset-button-do-warm-reboot',
-    type : 'feature',
-    value : 'disabled',
-    description : 'Enable warm reboot on the reset button'
+    type: 'feature',
+    value: 'disabled',
+    description: 'Enable warm reboot on the reset button',
 )
 
 option(
     'host-instances',
     type: 'string',
     value: '0',
-    description: 'Host Instances that can be defined by project, for example: 1 2 3 4'
+    description: 'Host Instances that can be defined by project, for example: 1 2 3 4',
 )