Skip to content

Commit 8c8c15b

Browse files
authored
Merge pull request #1935 from Ark-kun/patch-1
Fixed double module imports
2 parents 5a96bbc + a4189cc commit 8c8c15b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

kubernetes/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2016 The Kubernetes Authors.
1+
# Copyright 2022 The Kubernetes Authors.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -16,10 +16,10 @@
1616
# The version is auto-updated. Please do not edit.
1717
__version__ = "25.0.0-snapshot"
1818

19-
import kubernetes.client
20-
import kubernetes.config
21-
import kubernetes.dynamic
22-
import kubernetes.watch
23-
import kubernetes.stream
24-
import kubernetes.utils
25-
import kubernetes.leaderelection
19+
from . import client
20+
from . import config
21+
from . import dynamic
22+
from . import watch
23+
from . import stream
24+
from . import utils
25+
from . import leaderelection

0 commit comments

Comments
 (0)