Skip to content

Commit 60a4579

Browse files
committed
Formatted the docstrings
1 parent eb969c0 commit 60a4579

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

bunq/sdk/context.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def to_json(self):
258258
"""
259259
Serializes an ApiInstance to JSON data
260260
261-
:return: str
261+
:rtype: str
262262
"""
263263
return converter.class_to_json(self)
264264

@@ -267,8 +267,9 @@ def from_json(cls, data):
267267
"""
268268
Creates an ApiContext instance from JSON data
269269
270-
:param data: str
271-
:return: ApiContext
270+
:type data: str
271+
272+
:rtype: ApiContext
272273
"""
273274
return converter.json_to_class(ApiContext, data)
274275

0 commit comments

Comments
 (0)