Skip to content

Commit

Permalink
Remove: Unnecessary code block
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielschowe committed Sep 19, 2024
1 parent 56847ef commit 54a4a2f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pontos/github/api/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ async def package_version_tags(
if not response.is_success:
raise GitHubApiError(response)
resp = response.json()
print(resp)
return resp["tags"]

async def delete_package(
Expand Down Expand Up @@ -361,7 +360,3 @@ async def delete_package_with_tag(
response = await self._client.delete(api)
if not response.is_success:
raise GitHubApiError(response)
api = f"/orgs/{organization}/packages/{package_type}/{package_name}/versions/tags/{tag}"
response = await self._client.delete(api)
if not response.is_success:
raise GitHubApiError(response)

0 comments on commit 54a4a2f

Please sign in to comment.