Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoflorido committed Dec 13, 2024
1 parent b5695c1 commit 5767e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charms/worker/k8s/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ def _announce_kubernetes_version(self):
}

waiting_parts = [
f"{count} {role_names[role]}{"s" if count > 1 else ""}"
f"{count} {role_names[role]}{'s' if count > 1 else ''}"
for role, count in waiting_units.items()
if count
]
Expand Down

0 comments on commit 5767e0f

Please sign in to comment.