Skip to content

Commit

Permalink
changing multiple inheritance class order
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Haigh <[email protected]>
  • Loading branch information
MichaelHaigh committed Apr 30, 2024
1 parent e28b5b4 commit 89bf763
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astraSDK/k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def main(self, v1SecretObj, namespace="astra-connector"):
self.printKubeError(e)


class createRegCred(KubeCommon, SDKCommon):
class createRegCred(SDKCommon, KubeCommon):
"""Creates a docker registry credential. By default it uses fields from config.yaml,
however any of these fields can be overridden by custom values."""

Expand Down Expand Up @@ -883,7 +883,7 @@ def main(self, name=None, registry=None, username=None, password=None, namespace
).main(regCredSecret, namespace=namespace)


class createAstraApiToken(KubeCommon, SDKCommon):
class createAstraApiToken(SDKCommon, KubeCommon):
"""Creates an astra-api-token secret based on the contents of config.yaml"""

def __init__(
Expand Down

0 comments on commit 89bf763

Please sign in to comment.