Skip to content

Commit 49bfb5b

Browse files
committed
split too long line
1 parent 025db0b commit 49bfb5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

coc/ext/fullwarapi/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ async def war_result_log(self, clan_tag: str) -> Optional[Generator[ClanWar, Non
189189
f"/war_result_log?clan_tag={correct_tag(clan_tag, '%23')}")
190190
try:
191191
responses = data["log"]
192-
return (ClanWar(data=response["response"], client=self.coc_client, clan_tag=coc.utils.correct_tag(clan_tag)) for response in responses)
192+
return (ClanWar(data=response["response"], client=self.coc_client,
193+
clan_tag=coc.utils.correct_tag(clan_tag)) for response in responses)
193194
except (IndexError, KeyError, TypeError, ValueError):
194195
return None
195196

0 commit comments

Comments
 (0)