Skip to content

Commit e1684df

Browse files
[MISC] Fix PostgreSQL lib function signature (#879)
1 parent e28ea54 commit e1684df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/charms/postgresql_k8s/v0/postgresql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

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

4040
# Groups to distinguish database permissions
4141
PERMISSIONS_GROUP_ADMIN = "admin"
@@ -223,7 +223,7 @@ def create_user(
223223
user: str,
224224
password: Optional[str] = None,
225225
admin: bool = False,
226-
extra_user_roles: Optional[list[str]] = None,
226+
extra_user_roles: Optional[List[str]] = None,
227227
) -> None:
228228
"""Creates a database user.
229229

0 commit comments

Comments
 (0)