Skip to content

Commit

Permalink
Merge pull request kubernetes-client#1935 from Ark-kun/patch-1
Browse files Browse the repository at this point in the history
Fixed double module imports
  • Loading branch information
k8s-ci-robot authored Jan 16, 2023
2 parents 5a96bbc + a4189cc commit 8c8c15b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions kubernetes/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -16,10 +16,10 @@
# 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

0 comments on commit 8c8c15b

Please sign in to comment.