fix: Lint default plugins

This commit is contained in:
2025-09-02 15:58:55 +10:00
parent e7b787c30b
commit 86e174c337
4 changed files with 8 additions and 8 deletions

View File

@@ -88,7 +88,7 @@ def main(params, authentication):
return {"status": f"Failed: {batch['error']['message']}", "transaction": "None"}
if 'result' in batch:
if batch['result'] != None:
if batch['result'] is not None:
tx = batch['result']['hash']
return {"status": "Success", "transaction": tx}
# Note only one batch can be sent at a time