kevinsawade / python-todo-to-issue

This github action looks for todos in new commits and posts them as issues. Once the todos are removed the issues are closed.
https://kevinsawade.github.io/python-todo-to-issue/index.html
GNU Lesser General Public License v2.1
3 stars 1 forks source link

Write some more methods. #64

Closed github-actions[bot] closed 3 years ago

github-actions[bot] commented 3 years ago

This issue was automatically created by a github action that converts project Todos to issues.

https://github.com/kevinsawade/python-todo-to-issue/blob/036ef2ca/tests/examples.py#L76


    More info about the function in an explanatory text.

    Todo:
        * (kevinsawade) This function is empty. Put something here.
        * Multi-line todos should follow google-styleguide like this one.
            This means a tab should be used indentation inside
            the docstrings. This will form the body of the issue. Change!.
            Assignees and labels can be added the same way:
            assignees: github_user2, user3
            labels: wontfix, devel
            milestones: alpha

    """
    # This is a simple in-line comment
    # Function will be passed, but I will also add todos:
    # Todo (kevinsawade): Fill this function.
    pass

class useless_class:
    """
    Todo:
        * (kevinsawade) Write some more methods.

    """

    def __init__(self):
        # TODO: This property is not random.
        #  Change it around and make it random.
        #  assignees: kevinsawade
        #  labels: wontfix
        pass

    @property
    def random(self):
        # TODO: This property is not random.
        #  Change it around and make it random.
        #  assignees: kevinsawade
        #  labels: wontfix
        return 2
github-actions[bot] commented 3 years ago

Closed in 7fae83cc