From 8a8cef399f882922dcb3d1df917c8c25f62e25f7 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Thu, 3 Sep 2020 19:48:34 +0900 Subject: [PATCH] Format --- pytchat/cli/arguments.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pytchat/cli/arguments.py b/pytchat/cli/arguments.py index d034f93..0e8e9e8 100644 --- a/pytchat/cli/arguments.py +++ b/pytchat/cli/arguments.py @@ -19,6 +19,7 @@ class Arguments(metaclass=Singleton): OUTPUT: str = 'output_dir' VIDEO_IDS: str = 'video_id' SAVE_ERROR_DATA: bool = 'save_error_data' + def __init__(self, arguments: Optional[Dict[str, Union[str, bool, int]]] = None): """ @@ -39,6 +40,3 @@ class Arguments(metaclass=Singleton): if arguments[Arguments.Name.VIDEO_IDS]: self.video_ids = [video_id for video_id in arguments[Arguments.Name.VIDEO_IDS].split(',')] - - -