diff --git a/core/auto_process/books.py b/core/auto_process/books.py index 5fc5518e..6d4f8ed3 100644 --- a/core/auto_process/books.py +++ b/core/auto_process/books.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0, diff --git a/core/auto_process/comics.py b/core/auto_process/comics.py index 6dd0537c..eda7b0f4 100644 --- a/core/auto_process/comics.py +++ b/core/auto_process/comics.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0, diff --git a/core/auto_process/games.py b/core/auto_process/games.py index 59f13ba6..f813a307 100644 --- a/core/auto_process/games.py +++ b/core/auto_process/games.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0, diff --git a/core/auto_process/movies.py b/core/auto_process/movies.py index ccbb283a..33905e9a 100644 --- a/core/auto_process/movies.py +++ b/core/auto_process/movies.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0, diff --git a/core/auto_process/music.py b/core/auto_process/music.py index d985601d..777546e3 100644 --- a/core/auto_process/music.py +++ b/core/auto_process/music.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0, diff --git a/core/auto_process/tv.py b/core/auto_process/tv.py index 86963a79..48cf4d1f 100644 --- a/core/auto_process/tv.py +++ b/core/auto_process/tv.py @@ -36,7 +36,7 @@ requests.packages.urllib3.disable_warnings() def process( - section: core.configuration.Section, + section: str, dir_name: str, input_name: str = '', status: int = 0,