Instance of 'SQLAlchemy' has no 'Column' member (no-member)

前端 未结 6 2150
清酒与你
清酒与你 2020-12-13 02:25

I\'m currently trying to implement steam login into website. But I\'m unable to get pass this error within the code. I\'ve created the database object but it keeps showing t

6条回答
  •  一向
    一向 (楼主)
    2020-12-13 03:03

    For Windows, this works: In case of Visual Studio Code: Open File > Preferences > Settings > Edit in settings.json -> and add this code after comma below existing settings:

        "python.linting.pylintArgs": [
            "--load-plugins",
            "pylint-flask"
        ]
    

提交回复
热议问题