diff --git a/pontos/github/api/packages.py b/pontos/github/api/packages.py index a876b2bc5..230319459 100644 --- a/pontos/github/api/packages.py +++ b/pontos/github/api/packages.py @@ -348,7 +348,7 @@ async def delete_package_with_tag( ) """ - async for version in self.package_versions(organization, package_type, package_name): + async for version in await self.package_versions(organization, package_type, package_name): if version.tags == tag: await self.delete_package_version(organization, package_type, package_name, version.version) return