MCPcopy Index your code
hub / github.com/kubernetes-client/python / __init__

Method __init__

kubernetes/base/dynamic/discovery.py:418–420  ·  view source on GitHub ↗
(self, client, *args, **kwargs)

Source from the content-addressed store, hash-verified

416
417class CacheDecoder(json.JSONDecoder):
418 def __init__(self, client, *args, **kwargs):
419 self.client = client
420 json.JSONDecoder.__init__(self, object_hook=self.object_hook, *args, **kwargs)
421
422 def object_hook(self, obj):
423 if '_type' not in obj:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected