Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
remove debug print() (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
phsiao authored and hjacobs committed Jun 13, 2019
1 parent 1af2b3b commit 1756fcc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pykube/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def object_factory(api, api_version, kind):
It is planned to fix this, but in the mean time pass it as you would normally.
"""
resource_list = api.resource_list(api_version)
print(resource_list)
resource = next((resource for resource in resource_list["resources"] if resource["kind"] == kind), None)
base = NamespacedAPIObject if resource["namespaced"] else APIObject
return type(kind, (base,), {
Expand Down

0 comments on commit 1756fcc

Please sign in to comment.