Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgameiroborges committed Apr 14, 2024
1 parent d9129cb commit fd18231
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/charms/operator_libs_linux/v2/snap.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,9 @@ def ensure(
# We are installing or refreshing a snap.
if self._state not in (SnapState.Present, SnapState.Latest):
# The snap is not installed, so we install it.
logger.info(f"Installing snap {self._name} revision {revision}, tracking {channel}")
logger.info(
f"Installing snap {self._name} revision {revision}, tracking {channel}"
)
self._install(channel, cohort, revision)
else:
# The snap is installed, but we are changing it (e.g., switching channels).
Expand Down

0 comments on commit fd18231

Please sign in to comment.