Skip to content

Commit

Permalink
Fix Pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
romanvm committed Apr 5, 2024
1 parent 9da24f2 commit 560d335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.video.external.library/libs/json_rpc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def send_json_rpc(self):
'method': self.method,
'id': '1',
}
params = self.get_params()
params = self.get_params() # pylint: disable=assignment-from-none
if params is not None:
request['params'] = params
logger.debug('JSON-RPC request: %s', pformat(request))
Expand Down

0 comments on commit 560d335

Please sign in to comment.