Skip to content

Commit 525953d

Browse files
committed
kci-dev: isort compliant
Signed-off-by: Arisu Tachibana <[email protected]>
1 parent 890d374 commit 525953d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Diff for: kci-dev/kci-dev.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
import click
5-
from subcommands import commit
6-
from subcommands import patch
5+
from subcommands import commit, patch
76

87

98
@click.group(

Diff for: kci-dev/subcommands/commit.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4+
import json
5+
46
import click
5-
import toml
67
import requests
7-
import json
8+
import toml
89
from git import Repo
910

1011

Diff for: kci-dev/subcommands/patch.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4+
import json
5+
46
import click
5-
import toml
67
import requests
7-
import json
8+
import toml
89
from git import Repo
910

1011

0 commit comments

Comments
 (0)