Make lines indented by four spaces instead of three

This commit is contained in:
Jeff Widman
2016-02-29 01:58:19 -08:00
parent 0ccbb24b3f
commit 5208abd072

View File

@@ -2,7 +2,7 @@ from redash.models import db, Alert, AlertSubscription
if __name__ == '__main__':
with db.database.transaction():
Alert.create_table()
AlertSubscription.create_table()
Alert.create_table()
AlertSubscription.create_table()
db.close_db(None)