Skip to content
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

[RFE] Across: Add method description to all methods inside the cli-weather build #14

Open
vatsa287 opened this issue Nov 22, 2020 · 0 comments
Labels
documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers

Comments

@vatsa287
Copy link
Owner

Request For Enhancement:

This feature would be useful for all hovers on methods on Text Editors. Give a good description of what the method does in brief.
First time contributors will be able to make this a Git practice.

Example:

from:

def get_basic_temparature(main_data, degree):
    data = main_data['data']
    city = data[0]['city_name']
    print("Current temparature in {} is {} {}" .format(city.capitalize(), data[0]['temp'], degree))

to:

def get_basic_temparature(main_data, degree):
    """ Display the current temperature with corresponding city name """
    data = main_data['data']
    city = data[0]['city_name']
    print("Current temparature in {} is {} {}" .format(city.capitalize(), data[0]['temp'], degree))
@vatsa287 vatsa287 added documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers labels Nov 22, 2020
PranavRPrasad added a commit to PranavRPrasad/cli-weather that referenced this issue Oct 7, 2021
This was referenced Oct 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant