Skip to content

Commit

Permalink
Fix flake8 warning
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Christophe Morin <jean_christophe_morin@hotmail.com>
  • Loading branch information
JeanChristopheMorinPerso committed Jun 29, 2024
1 parent a8d0439 commit 71e0c4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/rez/package_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,9 @@ def add_variant(self, variant, force=False, wait_for_copying=False, logger=None)
if logger:
if status == self.VARIANT_FOUND:
# We have resolved into a satisfactory state
logger.info(f"{variant.qualified_name} "
f"{self.STATUS_DESCRIPTIONS[status]}")
logger.info(
f"{variant.qualified_name} {self.STATUS_DESCRIPTIONS[status]}"
)
else:
logger.warning(f"{variant.qualified_name} "
f"{self.STATUS_DESCRIPTIONS[status]}")
Expand Down

0 comments on commit 71e0c4a

Please sign in to comment.