第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何禁用任何使用我的函數(shù)的 pylint 檢查?

如何禁用任何使用我的函數(shù)的 pylint 檢查?

開(kāi)心每一天1111 2023-03-16 09:05:41
我制作了一個(gè)classproperty描述符,每當(dāng)我使用用它裝飾的函數(shù)時(shí),我都會(huì)收到多個(gè)pylint檢查錯(cuò)誤。這是一個(gè)帶有示例裝飾函數(shù)的示例類:class Bar:    """    Bar documentation.    """    # pylint: disable=no-method-argument    @classproperty    def foo():        """        Retrieve foo.        """        return "foo"多虧了描述符,我可以調(diào)用Bar.foo并獲取返回的字符串foo。不幸的是,每當(dāng)我將這樣的函數(shù)用于稍微復(fù)雜的項(xiàng)目(例如返回對(duì)象實(shí)例的函數(shù))時(shí),pylint就會(huì)開(kāi)始抱怨諸如no-memberor之類的東西unexpected-keyword-arg,僅僅是因?yàn)樗J(rèn)為Bar.foo是一個(gè)方法,而不是一個(gè)包裝的classproperty對(duì)象。我想禁用任何使用我的函數(shù)的代碼的警告- 我絕對(duì)不能允許# pylint: disable每次使用classproperty-wrapped 方法時(shí)都必須編寫(xiě)。我該怎么做呢pylint?或者也許我應(yīng)該改用其他 linter?以下是由于上述原因生成的警告示例:class Bar:    """    Bar documentation.    """    # pylint: disable=no-method-argument    @classproperty    def foo():        """        Retrieve an object.        """        return NotImplementedError("Argument")print(Bar.foo.args)pylint抱怨E1101: Method 'foo' has no 'args' member (no-member)(即使我知道它肯定有),我想完全禁用任何使用Bar.foo.args或類似的模塊/類/函數(shù)的警告。對(duì)于任何感興趣的人,這里是描述符的最小實(shí)現(xiàn)classproperty:class classproperty:    """    Minimal descriptor.    """    # pylint: disable=invalid-name    def __init__(self, func):        self._func = func    def __get__(self, _obj, _type):        return self._func()
查看完整描述

2 回答

?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊

我設(shè)法通過(guò)將項(xiàng)目類型提示為以下內(nèi)容來(lái)創(chuàng)建一個(gè)骯臟的黑客None:


class Bar:

    """

    Bar documentation.

    """

    # pylint: disable=no-method-argument,function-redefined,too-few-public-methods

    foo: None


    @classproperty

    def foo():

        """

        Retrieve an object.

        """

        return NotImplementedError("Argument")

我寧愿避免使用這樣的代碼,因?yàn)橛捎谘h(huán)導(dǎo)入問(wèn)題(因此None),我實(shí)際上無(wú)法導(dǎo)入應(yīng)該進(jìn)行類型提示的項(xiàng)目,但它的技巧pylint很好。


查看完整回答
反對(duì) 回復(fù) 2023-03-16
?
婷婷同學(xué)_

TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊

據(jù)我所知,這是不可能的。


我還沒(méi)有找到在pylint的配置中解決這個(gè)問(wèn)題的方法。我能找到的最接近的是選項(xiàng)property-classes,但它只影響invalid-name檢查器,所以不是我們?cè)谶@里尋找的:


:property-classes:

  List of decorators that produce properties, such as abc.abstractproperty. Add

  to this list to register other decorators that produce valid properties.

  These decorators are taken in consideration only for invalid-name.


  Default: ``abc.abstractproperty``

也許這是一個(gè)值得直接詢問(wèn)pylint的開(kāi)發(fā)人員的問(wèn)題。

在我看來(lái),它可以通過(guò)轉(zhuǎn)換插件來(lái)解決(也許這是為了靈感?)。Pylint可以很好地處理@property裝飾器,所以像這里建議的那樣@classproperty,也應(yīng)該是可行的。



查看完整回答
反對(duì) 回復(fù) 2023-03-16
  • 2 回答
  • 0 關(guān)注
  • 131 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)