Renaming: Kitsu Plural func sync_all_projects

This commit is contained in:
Félix David 2022-06-23 12:59:01 +02:00
parent c782c61c3c
commit 25b7f98022
2 changed files with 3 additions and 3 deletions

View file

@ -129,8 +129,8 @@ def sync_service(login, password):
login (str): Kitsu user login
password (str): Kitsu user password
"""
from .utils.update_op_with_zou import sync_all_project
from .utils.update_op_with_zou import sync_all_projects
from .utils.sync_service import start_listeners
sync_all_project(login, password)
sync_all_projects(login, password)
start_listeners(login, password)

View file

@ -250,7 +250,7 @@ def write_project_to_op(project: dict, dbcon: AvalonMongoDB) -> UpdateOne:
)
def sync_all_project(login: str, password: str):
def sync_all_projects(login: str, password: str):
"""Update all OP projects in DB with Zou data.
Args: