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