Skip to content

Commit

Permalink
style: Stopped noting the type of http request
Browse files Browse the repository at this point in the history
  • Loading branch information
Keita Ito committed Jan 31, 2022
1 parent 486edd1 commit da1b9ef
Show file tree
Hide file tree
Showing 6 changed files with 173 additions and 173 deletions.
Binary file modified docs/.doctrees/emo_platform.doctree
Binary file not shown.
Binary file modified docs/.doctrees/environment.pickle
Binary file not shown.
196 changes: 98 additions & 98 deletions docs/emo_platform.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

74 changes: 37 additions & 37 deletions emo_platform/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def get_access_token(self, refresh_token: str) -> EmoTokens:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -359,7 +359,7 @@ def get_account_info(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -388,7 +388,7 @@ def delete_account_info(
Raises
----------
EmoPlatformError
関数内部で行っているDELETEの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand All @@ -413,7 +413,7 @@ def get_rooms_list(self) -> EmoRoomInfo:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand All @@ -439,7 +439,7 @@ def get_rooms_id(self) -> List[str]:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
あるいは、ユーザーが参加している部屋が1つもなかった場合。
Note
Expand Down Expand Up @@ -501,7 +501,7 @@ def get_stamps_list(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand All @@ -528,7 +528,7 @@ def get_motions_list(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand All @@ -555,7 +555,7 @@ def get_webhook_setting(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -587,7 +587,7 @@ def change_webhook_setting(self, webhook: WebHook) -> EmoWebhookInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPUTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -624,7 +624,7 @@ def register_webhook_event(self, events: List[str]) -> EmoWebhookInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPUTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -657,7 +657,7 @@ def create_webhook_setting(self, webhook: WebHook) -> EmoWebhookInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -686,7 +686,7 @@ def delete_webhook_setting(
Raises
----------
EmoPlatformError
関数内部で行っているDELETEの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -909,7 +909,7 @@ def get_account_info(self) -> EmoBizAccountInfo: # type: ignore[override]
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -962,7 +962,7 @@ def change_account_info(self, acount: AccountInfo) -> EmoBizAccountInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPUTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -996,7 +996,7 @@ def get_rooms_list(self, api_key: str) -> EmoRoomInfo: # type: ignore[override]
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1030,7 +1030,7 @@ def get_rooms_id(self, api_key: str) -> List[str]: # type: ignore[override]
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
あるいは、ユーザーが参加している部屋が1つもなかった場合。
Note
Expand Down Expand Up @@ -1064,7 +1064,7 @@ def get_stamps_list(self, api_key: str) -> EmoStampsInfo: # type: ignore[overri
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand All @@ -1090,7 +1090,7 @@ def get_broadcast_msgs_list(self) -> EmoBroadcastInfoList:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1121,7 +1121,7 @@ def get_broadcast_msg_details(self, message_id: int) -> EmoBroadcastInfo:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1160,7 +1160,7 @@ def create_broadcast_msg(
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1472,7 +1472,7 @@ def get_webhook_setting( # type: ignore[override]
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -1510,7 +1510,7 @@ def change_webhook_setting(self, api_key: str, webhook: WebHook) -> EmoWebhookIn
Raises
----------
EmoPlatformError
関数内部で行っているPUTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -1552,7 +1552,7 @@ def register_webhook_event(self, api_key: str, events: List[str]) -> EmoWebhookI
Raises
----------
EmoPlatformError
関数内部で行っているPUTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -1590,7 +1590,7 @@ def create_webhook_setting(self, api_key: str, webhook: WebHook) -> EmoWebhookIn
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1624,7 +1624,7 @@ def delete_webhook_setting(self, api_key: str) -> EmoWebhookInfo: # type: ignor
Raises
----------
EmoPlatformError
関数内部で行っているDELETEの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(BOCCO emoにWebhookの設定がされていない場合を含む)
Note
Expand Down Expand Up @@ -1728,7 +1728,7 @@ def get_msgs(self, ts: int = None) -> EmoMsgsInfo:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1763,7 +1763,7 @@ def get_sensors_list(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1796,7 +1796,7 @@ def get_sensor_values(self, sensor_id: str) -> EmoRoomSensorInfo:
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(部屋センサ以外のBOCCOセンサ / 紐づいていない部屋センサ、のidを指定した場合も含みます)
Note
Expand Down Expand Up @@ -1837,7 +1837,7 @@ def send_audio_msg(self, audio_data_path: str) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1881,7 +1881,7 @@ def send_image(self, image_data_path: str) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1918,7 +1918,7 @@ def send_msg(self, msg: str) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -1959,7 +1959,7 @@ def send_stamp(self, stamp_id: str, msg: Optional[str] = None) -> EmoMessageInfo
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -2001,7 +2001,7 @@ def send_original_motion(self, motion_data: Union[str, dict]) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
(モーションのデータ形式が誤っている場合も含みます)
Note
Expand Down Expand Up @@ -2042,7 +2042,7 @@ def change_led_color(self, color: Color) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -2078,7 +2078,7 @@ def move_to(self, head: Head) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -2114,7 +2114,7 @@ def send_motion(self, motion_id: str) -> EmoMessageInfo:
Raises
----------
EmoPlatformError
関数内部で行っているPOSTの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down Expand Up @@ -2145,7 +2145,7 @@ def get_emo_settings(
Raises
----------
EmoPlatformError
関数内部で行っているGETの処理が失敗した場合
関数内部で行っているAPI呼び出しが失敗した場合
Note
----
Expand Down
Loading

0 comments on commit da1b9ef

Please sign in to comment.