Fix type hint
这个提交包含在:
父节点
d154ef23df
当前提交
5f685b601b
@ -608,7 +608,7 @@ class AString:
|
||||
"""
|
||||
return write_bstring(stream, self.bytes)
|
||||
|
||||
def __eq__(self, other: AString) -> bool:
|
||||
def __eq__(self, other: 'AString') -> bool:
|
||||
return isinstance(other, type(self)) and self.string == other.string
|
||||
|
||||
def __repr__(self) -> str:
|
||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户