forked from jan/fatamorgana
Fix type hint
This commit is contained in:
parent
d154ef23df
commit
5f685b601b
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue