Skip to content

Commit 8f4970b

Browse files
committed
Sort python imports
Signed-off-by: Toni Finger <[email protected]>
1 parent d43a38d commit 8f4970b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Tests/kaas/plugin/plugin_kind.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import logging
12
import os
23
import os.path
34
from pathlib import Path
5+
46
from interface import KubernetesClusterPlugin
57
from pytest_kind import KindCluster
6-
import logging
8+
79
logger = logging.getLogger("plugin_kind")
810

911

Tests/kaas/plugin/run_plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
#!/usr/bin/env python3
22
import logging
33
import os.path
4+
45
import click
56
import yaml
67

7-
88
from plugin_kind import PluginKind
99
from plugin_static import PluginStatic
1010

11-
1211
PLUGIN_LOOKUP = {
1312
"kind": PluginKind,
1413
"static": PluginStatic,

0 commit comments

Comments
 (0)