Skip to content

Commit

Permalink
build: remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jkloetzke committed Jan 15, 2024
1 parent 7befd7b commit e50bcda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pym/bob/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ async def _cookStep(self, step, checkoutOnly, depth):
if not self._wasAlreadyRun(step, checkoutOnly):
if not checkoutOnly:
built, audit = await self._cookPackageStep(step,
depth, mayUpOrDownload, buildId)
depth, buildId)
self._setAlreadyRun(step, False, checkoutOnly)

# Upload package if it was built. On Jenkins we always upload
Expand Down Expand Up @@ -1550,7 +1550,7 @@ async def _downloadPackage(self, packageStep, depth, packageBuildId):

return wasDownloaded, audit

async def _cookPackageStep(self, packageStep, depth, mayUpOrDownload, packageBuildId):
async def _cookPackageStep(self, packageStep, depth, packageBuildId):
# Dissect input parameters that lead to current workspace the last time
(prettyPackagePath, created) = self._constructDir(packageStep, "dist")
oldWasDownloaded, oldWasShared, oldInputHashes, oldInputBuildId = \
Expand Down

0 comments on commit e50bcda

Please sign in to comment.