mypy: minimal annotations to enable a clean run

This commit is contained in:
Sarah Hoffmann
2022-06-30 10:48:04 +02:00
parent b1903f0fbf
commit 9b636fdc10
5 changed files with 23 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class SPImporter():
Take a sp loader which load the phrases from an external source.
"""
def __init__(self, config, db_connection, sp_loader) -> None:
def __init__(self, config, db_connection, sp_loader):
self.config = config
self.db_connection = db_connection
self.sp_loader = sp_loader