-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refine the docstrings are made available across all functions and classes #55
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the requested changes and add the required information
Rest seems good! Amazing detailed documentation 🚀
expedite/client/conn.py
Outdated
""" | ||
Show textual message of starting the exchange process | ||
|
||
:return: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add information about the return statement of this function
expedite/view.py
Outdated
|
||
:param text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add information about the parameter text
in this function
expedite/view.py
Outdated
|
||
def warning(message) -> None: | ||
standard.logger.warning(style(message, fg="yellow", bold=True)) | ||
:param text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add information about the parameter text
in this function
expedite/view.py
Outdated
""" | ||
Show textual message in warning format | ||
|
||
:param text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add information about the parameter text
in this function
expedite/view.py
Outdated
""" | ||
Show textual message in general format | ||
|
||
:param text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add information about the parameter text
in this function
Signed-off-by: Akashdeep Dhar <akashdeep.dhar@gmail.com>
Signed-off-by: Akashdeep Dhar <akashdeep.dhar@gmail.com>
db986f1
to
5aa68a5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work applying the requested changes!
Last couple of changes😭 Rest seems to be good 💯
expedite/client/bridge/room.py
Outdated
@@ -117,28 +137,53 @@ def show_detail(self): | |||
) | |||
|
|||
def normal_delivering_side(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add typing (return type) for this function
expedite/client/bridge/util.py
Outdated
""" | ||
Ensure that filepath for delivering or collecting contents must exist | ||
|
||
:param path: Load filepath |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the parameter from path
to file
and adjust the description accordingly
Signed-off-by: Akashdeep Dhar <akashdeep.dhar@gmail.com>
Refine the docstrings are made available across all functions and classes
Fixes #53