Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/charms/postgresql_k8s/v0/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

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

# Groups to distinguish database permissions
PERMISSIONS_GROUP_ADMIN = "admin"
Expand Down Expand Up @@ -223,7 +223,7 @@ def create_user(
user: str,
password: Optional[str] = None,
admin: bool = False,
extra_user_roles: Optional[list[str]] = None,
extra_user_roles: Optional[List[str]] = None,
) -> None:
"""Creates a database user.

Expand Down