From f6973e90071216b13fc5430675ea6bd4db4adc5a Mon Sep 17 00:00:00 2001 From: Arisu Tachibana Date: Wed, 11 Sep 2024 20:07:27 +0900 Subject: [PATCH] kci-dev: isort compliant Signed-off-by: Arisu Tachibana --- kci-dev/kci-dev.py | 3 +-- kci-dev/subcommands/commit.py | 5 +++-- kci-dev/subcommands/patch.py | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/kci-dev/kci-dev.py b/kci-dev/kci-dev.py index 1ea1c65..14c889d 100755 --- a/kci-dev/kci-dev.py +++ b/kci-dev/kci-dev.py @@ -2,8 +2,7 @@ # -*- coding: utf-8 -*- import click -from subcommands import commit -from subcommands import patch +from subcommands import commit, patch @click.group( diff --git a/kci-dev/subcommands/commit.py b/kci-dev/subcommands/commit.py index c3e2a7f..29d9c07 100644 --- a/kci-dev/subcommands/commit.py +++ b/kci-dev/subcommands/commit.py @@ -1,10 +1,11 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import json + import click -import toml import requests -import json +import toml from git import Repo diff --git a/kci-dev/subcommands/patch.py b/kci-dev/subcommands/patch.py index 1f81e9a..ed29f22 100644 --- a/kci-dev/subcommands/patch.py +++ b/kci-dev/subcommands/patch.py @@ -1,10 +1,11 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import json + import click -import toml import requests -import json +import toml from git import Repo