Skip to content

Commit

Permalink
More flake8 warnings fix
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 71e0c4a commit b12651e
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 @@ -261,8 +261,9 @@ def add_variant(self, variant, force=False, wait_for_copying=False, logger=None)
f"{variant.qualified_name} {self.STATUS_DESCRIPTIONS[status]}"
)
else:
logger.warning(f"{variant.qualified_name} "
f"{self.STATUS_DESCRIPTIONS[status]}")
logger.warning(
f"{variant.qualified_name} {self.STATUS_DESCRIPTIONS[status]}"
)
return (rootpath, status)

# 1.
Expand Down

0 comments on commit b12651e

Please sign in to comment.