summaryrefslogtreecommitdiff
path: root/alldefconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-03-06 01:58:06 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2019-03-06 02:03:41 +0100
commit553cca8e7417ad863b923758e6d402296d05de9c (patch)
tree662852d136f1f2ab661d5bcd5f3dabdc9c408b8b /alldefconfig.py
parentb07c2053de324d974521c83e7a073ff1330b74d8 (diff)
Use a consistent style in small utilities
Also remove some no longer used imports.
Diffstat (limited to 'alldefconfig.py')
-rwxr-xr-xalldefconfig.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alldefconfig.py b/alldefconfig.py
index 37b8f71..4f0cbca 100755
--- a/alldefconfig.py
+++ b/alldefconfig.py
@@ -15,10 +15,12 @@
import kconfiglib
+
def main():
kconf = kconfiglib.standard_kconfig()
kconfiglib.load_allconfig(kconf, "alldef.config")
kconf.write_config()
+
if __name__ == "__main__":
main()