From add1225a283692872088c8d0b7f2d0de8cc606d2 Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 14 Apr 2021 18:11:27 +0200 Subject: [PATCH] Sorted imports --- mkinitramfs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkinitramfs.py b/mkinitramfs.py index 0e65f2c..32cf039 100755 --- a/mkinitramfs.py +++ b/mkinitramfs.py @@ -3,12 +3,12 @@ Python2/3 compatible initrd generatin script """ import argparse -import tempfile +import json import os import shutil import subprocess -import json import sys +import tempfile XDG_CONFIG_HOME = os.getenv('XDG_CONFIG_HOME', os.path.expanduser('~/.config'))