PyCharm中缺少ndb Google Cloud Datastore的类型提示

问题描述 投票:1回答:1

ndb Model类的实例对象没有类型提示。

例如some_datetime不显示任何类型提示。类型提示可在其他地方使用。我需要安装一些专门用于类型提示的东西才能与ndb库一起使用吗?

from google.cloud import ndb

class MyModel(ndb.Model):
    some_datetime = ndb.DateTimeProperty()

    def f(self):
        self.some_datetime # PyCharm does not give type hints for datetime obj
                           # I expect hints like .timestamp, .tzinfo, etc

链接到ndb library

python-3.x google-cloud-platform pycharm google-cloud-datastore type-hinting
1个回答
0
投票

我已经能够重现您的问题,并且一直在寻找这个问题,但是我没有设法在Google和PyCharm的文档中找不到任何内容。

无论如何,我认为此问题与PyCharm密切相关,因此您应该考虑在其support page中提交请求。

© www.soinside.com 2019 - 2024. All rights reserved.