相关疑难解决方法(0)

尝试注释哈希变量时,“ABCMeta”对象不可下标

以下dataclass

from abc import ABC
from collections.abc import Mapping
from dataclasses import dataclass, field

@dataclass(eq=True, order=True, frozen=True)
class Expression(Node, ABC):
    def node(self):
        raise NotImplementedError
Run Code Online (Sandbox Code Playgroud)

用作基类:

@dataclass(eq=True, frozen=True)
class HashLiteral(Expression):
    pairs: Mapping[Expression, Expression]
    ...
Run Code Online (Sandbox Code Playgroud)

Node 定义为:

@dataclass(eq=True, frozen=True)
class Node:
    def __str__(self) -> str:
        raise NotImplementedError
Run Code Online (Sandbox Code Playgroud)

尝试使用HashLiteral该类时出现错误:

pairs: Mapping[Expression, Expression]
TypeError: 'ABCMeta' object is not subscriptable
Run Code Online (Sandbox Code Playgroud)

pairs上面的注释有什么问题?

python annotations python-3.x

14
推荐指数
1
解决办法
1万
查看次数

标签 统计

annotations ×1

python ×1

python-3.x ×1