From 7bbd12d306bba4d7fd47905cf2d0b4e3f7bdabbd Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Thu, 27 Sep 2018 19:53:06 +0200 Subject: Use a consistent import style in the examples Do the PEP 8 ordering thingy with standard library imports first. --- examples/help_grep.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/help_grep.py') diff --git a/examples/help_grep.py b/examples/help_grep.py index f05c66f..eeeddfa 100644 --- a/examples/help_grep.py +++ b/examples/help_grep.py @@ -33,10 +33,12 @@ # ... -from kconfiglib import Kconfig, Symbol, Choice, MENU, COMMENT import re import sys +from kconfiglib import Kconfig, Symbol, Choice, MENU, COMMENT + + if len(sys.argv) < 3: sys.exit("Pass the regex with SCRIPT_ARG=") -- cgit v1.2.3