style: tabify for consistency

This commit is contained in:
justcool393 2023-07-14 22:32:24 -05:00 committed by Ben Rog-Wilhelm
parent fde5840be4
commit 88c202ba3d
23 changed files with 587 additions and 587 deletions

View file

@ -22,9 +22,9 @@ branch_labels = None
depends_on = None
def upgrade():
db =Session(bind=op.get_bind())
db: Session = Session(bind=op.get_bind())
bulk_recompute_descendant_counts(lambda q: q, db)
def downgrade():
db =Session(bind=op.get_bind())
db: Session = Session(bind=op.get_bind())
db.execute(update(Comment).values(descendant_count=0))