Python logoPython/
FLK-E265

Block comment should start with `# `FLK-E265

Minor severityMinor
Style categoryStyle

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)
# Save the data to DB, to ensure redundancy before responding
db.save(req.data)
api.send(req)