Skip to content
This repository was archived by the owner on May 28, 2022. It is now read-only.

Commit 919fc03

Browse files
committed
chore: DocStringを追加
1 parent bb11e66 commit 919fc03

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

mi/note.py

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
def _add_reaction(cls, reaction, note_id=None) -> bool:
1111
"""
1212
指定したnoteに指定したリアクションを付与します(内部用
13+
1314
Parameters
1415
----------
1516
cls
@@ -21,7 +22,8 @@ def _add_reaction(cls, reaction, note_id=None) -> bool:
2122
2223
Returns
2324
-------
24-
25+
status: bool
26+
成功したならTrue,失敗ならFalse
2527
"""
2628

2729
if note_id:
@@ -61,6 +63,7 @@ async def delete(self) -> bool:
6163
async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
6264
"""
6365
指定したnoteに指定したリアクションを付与します
66+
6467
Parameters
6568
----------
6669
reaction : str
@@ -70,7 +73,8 @@ async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
7073
7174
Returns
7275
-------
73-
76+
func: bool
77+
成功したならTrue,失敗ならFalse
7478
"""
7579
set_auth_i(self.note, self.auth_i, True)
7680
return _add_reaction(self.note, reaction, note_id)
@@ -83,6 +87,22 @@ def __init__(self, data):
8387

8488

8589
class Note(object):
90+
"""
91+
92+
Methods
93+
-------
94+
add_file(file_id, path, name)
95+
ファイルをノートに添付します
96+
add_poll(data, item, expires_at, expired_after)
97+
アンケートをノートに追加します
98+
add_reaction(reaction, note_id)
99+
ノートにリアクションを追加します
100+
send()
101+
ノートを送信します
102+
delete(id)
103+
指定されたノートを削除します
104+
"""
105+
86106
def __init__(self,
87107
id_: str = None,
88108
created_at: str = None,
@@ -249,6 +269,7 @@ def add_poll(self, data: list = None, item: str = '', expires_at: int = None, ex
249269
async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
250270
"""
251271
指定したnoteに指定したリアクションを付与します
272+
252273
Parameters
253274
----------
254275
reaction : str
@@ -258,7 +279,8 @@ async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
258279
259280
Returns
260281
-------
261-
282+
func: bool
283+
成功したならTrue,失敗ならFalse
262284
"""
263285

264286
return _add_reaction(self, reaction, note_id)
@@ -295,6 +317,11 @@ def __init__(self, data):
295317

296318

297319
class ReactionNote(object):
320+
"""
321+
Attributes
322+
----------
323+
data : dict
324+
"""
298325
def __init__(self, data):
299326
self.reaction = data['body'].get('reaction')
300327
self.user_id = data['body'].get('userId')

0 commit comments

Comments
 (0)