Block comment should start with `# `FLK-E265
Block comments should have one space before the pound sign #
and the comment itself.
Bad practice
#Save the data to DB, to ensure redundancy before responding
db.save(req.data)
api.send(req)
Recommended
# Save the data to DB, to ensure redundancy before responding
db.save(req.data)
api.send(req)