Skip to content

pyright and mypy showing access error messages for basic sqlite-utils usage #607

@geekodour

Description

@geekodour

This is not causing any issues in running of my programs but is minor inconvenience, I am not sure what should be the fix.
This is pyright on emacs.

image
image

This is mypy:
image

code:

def ensure_tables(db: Database):
    if "users" not in db.table_names():
        db["users"].create({
            "id": int,
            "username": str,
            "access_token": str,
            "refresh_token": str,
            "expires_in": int,
            "expires_at": int,
            "last_sync": datetime.datetime
        }, pk="id")

Any suggestions on what should be the fix

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