This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit fe6f4be0ba7a1e42e72d89e21c8364aafbc94c7d Author: Daniel Gruno <[email protected]> AuthorDate: Wed Mar 31 12:43:24 2021 +0200 fix type test warnings --- server/plugins/auditlog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugins/auditlog.py b/server/plugins/auditlog.py index 51ac108..ad94d16 100644 --- a/server/plugins/auditlog.py +++ b/server/plugins/auditlog.py @@ -44,7 +44,7 @@ class AuditLogEntry: async def view( - session: plugins.session.SessionObject, page: int = 0, num_entries: int = 50, raw: bool = False, filter: typing.List[str] = [] + session: plugins.session.SessionObject, page: int = 0, num_entries: int = 50, raw: bool = False, filter: typing.Tuple = () ) -> typing.AsyncGenerator: """ Returns N entries from the audit log, paginated """ assert session.database, "No database connection could be found!"
