]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
hwdb/acpi-update: apply "ruff format"
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 19 Feb 2026 16:47:18 +0000 (01:47 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 17 May 2026 17:32:42 +0000 (02:32 +0900)
hwdb.d/acpi-update.py

index 41670b32bbc7c2062724c7775c0eea8433526aeb..66a11d8502dbda7abae34f7db66293fac9c678b4 100755 (executable)
@@ -5,6 +5,7 @@ from csv import reader
 
 # pylint: disable=consider-using-with
 
+
 def read_table(filename):
     table = list(reader(open(filename, newline='')))
     table = table[1:]  # Skip header
@@ -15,6 +16,7 @@ def read_table(filename):
         # a mistake, strip it.
         print(f'\nacpi:{row[1].strip()}*:\n ID_VENDOR_FROM_DATABASE={row[0].strip()}')
 
+
 print('''\
 # This file is part of systemd.
 #