Skip to content

Fix the README.rst #284

@majidabdulred

Description

@majidabdulred

The line

async def main():
    coc_client = coc.EVentsClient()
    try:
        await coc.login("email", "password")
    except coc.InvalidCredentials as error:
        exit(error)

should be

async def main():
    coc_client = coc.EventsClient()
    try:
        await coc_client.login("email", "password")
    except coc.InvalidCredentials as error:
        exit(error)

in the README.rst

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions