Skip to content

Commit

Permalink
chore: update charm libraries (#105)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 10, 2023
1 parent 66fa641 commit 26450c7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/charms/nginx_ingress_integrator/v0/nginx_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 3
LIBPATCH = 4

__all__ = ["require_nginx_route", "provide_nginx_route"]

Expand Down Expand Up @@ -172,7 +172,8 @@ def _config_reconciliation(self, _event: typing.Any = None) -> None:

# C901 is ignored since the method has too many ifs but wouldn't be
# necessarily good to reduce to smaller methods.
def require_nginx_route( # pylint: disable=too-many-locals,too-many-branches # noqa: C901
# E501: line too long
def require_nginx_route( # pylint: disable=too-many-locals,too-many-branches,too-many-arguments # noqa: C901,E501
*,
charm: ops.charm.CharmBase,
service_hostname: str,
Expand Down

0 comments on commit 26450c7

Please sign in to comment.