Skip to content

Commit

Permalink
line length fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Andersen <ben@isohedron.com.au>
  • Loading branch information
isohedronpipeline committed Mar 12, 2024
1 parent 461adb1 commit 2253d76
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/rez/package_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,11 @@ def add_variant(self, variant, force=False, wait_for_copying=False, logger=None)
f"{self.STATUS_DESCRIPTIONS[status]}")
elif status == self.VARIANT_FOUND:
# We have resolved into a satisfactory state
logger.info(f"{variant.name}-{variant.version} {self.STATUS_DESCRIPTIONS[status]}")
logger.info(f"{variant.name}-{variant.version} "
f"{self.STATUS_DESCRIPTIONS[status]}")
else:
logger.warning(f"{variant.name}-{variant.version} {self.STATUS_DESCRIPTIONS[status]}")
logger.warning(f"{variant.name}-{variant.version} "
f"{self.STATUS_DESCRIPTIONS[status]}")
return (rootpath, status)

# 1.
Expand Down

0 comments on commit 2253d76

Please sign in to comment.