Merge pull request #1935 from Ark-kun/patch-1

Fixed double module imports
This commit is contained in:
Kubernetes Prow Robot 2023-01-16 11:18:10 -08:00 committed by GitHub
commit 8c8c15bd30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
# Copyright 2016 The Kubernetes Authors.
# Copyright 2022 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -16,10 +16,10 @@ __project__ = 'kubernetes'
# The version is auto-updated. Please do not edit.
__version__ = "25.0.0-snapshot"
import kubernetes.client
import kubernetes.config
import kubernetes.dynamic
import kubernetes.watch
import kubernetes.stream
import kubernetes.utils
import kubernetes.leaderelection
from . import client
from . import config
from . import dynamic
from . import watch
from . import stream
from . import utils
from . import leaderelection