Skip to content

Commit

Permalink
fix according to pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Oct 3, 2023
1 parent bdb59d8 commit 9fbfe12
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ async def run(self, command: list[str]) -> TaskOutputData:
if image_labels := await get_image_labels(
docker_client, self.docker_auth, self.service_key, self.service_version
):
if iv := image_labels.integration_version:
integration_version = version.Version(iv)
if pr := image_labels.progress_regexp:
progress_regexp = re.compile(pr)
if version := image_labels.integration_version:
integration_version = version.Version(version)
if regexp := image_labels.progress_regexp:
progress_regexp = re.compile(regexp)
computational_shared_data_mount_point = (
await get_computational_shared_data_mount_point(docker_client)
)
Expand Down

0 comments on commit 9fbfe12

Please sign in to comment.