mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
proxyclient: Fix typo in LazyADT str implementation
Fix the `gstr` typo so that `print(hv.adt)` works as expected. Signed-off-by: Danny Lin <danny@kdrag0n.dev>
This commit is contained in:
parent
37e8f425bf
commit
7a29455646
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ class LazyADT:
|
|||
def __delattr__(self, attr):
|
||||
return delattr(self._adt, attr)
|
||||
def __str__(self, t=""):
|
||||
return gstr(self._adt)
|
||||
return str(self._adt)
|
||||
def __iter__(self):
|
||||
return iter(self._adt)
|
||||
|
||||
|
|
Loading…
Reference in a new issue