Skip to content

Commit

Permalink
adding no prints
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Oct 31, 2024
1 parent d4f6789 commit 6153d9e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/krkn_lib/k8s/krkn_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,6 @@ def get_kubernetes_custom_objects_count(
groups = client.ApisApi(self.api_client).get_api_versions().groups
result = dict[str, int]()
for api in groups:
print('groups ' + str(api))
versions = []
for v in api.versions:
name = ""
Expand Down Expand Up @@ -1996,10 +1995,8 @@ def get_kubernetes_custom_objects_count(
def get_api_resources_by_group(self, group, version):
try:
api_response = self.custom_object_client.get_api_resources(group,version)
print('api resource ' + str(api_response))
return api_response
except Exception:
print('exception')
pass

return None
Expand Down

0 comments on commit 6153d9e

Please sign in to comment.