From 97c0dac876dc5dd0be2879bb2b28f90d5a2b2b57 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Tue, 7 Apr 2020 19:28:26 -0400 Subject: [PATCH] linter --- lbry/extras/daemon/daemon.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index 7ce639b61..cbe1a1a53 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -5166,7 +5166,9 @@ class Daemon(metaclass=JSONRPCServerType): if isinstance(comment_ids, str): comment_ids = [comment_ids] - comments = await comment_client.jsonrpc_post(self.conf.comment_server, 'get_comments_by_id', comment_ids=comment_ids) + comments = await comment_client.jsonrpc_post( + self.conf.comment_server, 'get_comments_by_id', comment_ids=comment_ids + ) comments = comments['items'] claim_ids = {comment['claim_id'] for comment in comments} claims = {cid: await self.ledger.get_claim_by_claim_id(wallet.accounts, claim_id=cid) for cid in claim_ids}