chore: remove duplicate for-loop line in RPC.__aiter__ method in rpc.py

This commit is contained in:
retoor 2025-02-12 00:06:19 +00:00
parent 103142acad
commit dfb893c0cd
3 changed files with 0 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -33,7 +33,6 @@ class RPC:
async def __aiter__(self):
logger.debug("Iterating async trough result data.")
for k in self.__dict__.get("data", []):
for k in self.__dict__.get("data", []):
yield k