Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add space based on pep8 suggestion
Browse files Browse the repository at this point in the history
vkuznet committed Apr 25, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5762d98 commit 3ef1630
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ def uploadToAMQ(self, docs, producer=None):
msg = "%i out of %i documents successfully sent to AMQ" % (len(notifications) - len(failures),
len(notifications))
self.logger.info(msg)
return {"success": len(notifications)-len(failures), "failures": len(failures)}
return {"success": len(notifications) - len(failures), "failures": len(failures)}
except Exception as ex:
self.logger.exception("Failed to send data to StompAMQ. Error %s", str(ex))
return {}

0 comments on commit 3ef1630

Please sign in to comment.