Merge pull request #1935 from Ark-kun/patch-1
Fixed double module imports
This commit is contained in:
commit
8c8c15bd30
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user