Skip to content

Commit

Permalink
fix: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaqq committed Sep 27, 2024
1 parent c984a83 commit 172f9ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions juju/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ async def refresh(
resources: Optional[Dict[str, str]] = None,
revision: Optional[int] = None,
switch: Optional[str] = None,
):
):
"""Refresh the charm for this application.
:param str|None channel: Channel to use when getting the charm from the
Expand Down Expand Up @@ -847,7 +847,7 @@ async def local_refresh(
force_units: bool,
path: Union[Path, str],
resources: Optional[Dict[str, str]],
):
):
"""Refresh the charm for this application with a local charm.
:param dict charm_origin: The charm origin of the destination charm
Expand Down Expand Up @@ -935,7 +935,7 @@ def _refresh_origin(
current_origin: client.CharmOrigin,
channel: Optional[str] = None,
revision: Optional[int] = None,
) -> client.CharmOrigin:
) -> client.CharmOrigin:
chan = None if channel is None else Channel.parse(channel).normalize()

return client.CharmOrigin(
Expand Down

0 comments on commit 172f9ea

Please sign in to comment.