Remove pass

This commit is contained in:
Gui Heise 2021-12-21 14:44:58 -05:00
parent ba45200d66
commit c68e7216d9

View File

@ -22,9 +22,7 @@ def upgrade():
sa.Column("decimals", sa.Numeric, nullable=False), sa.Column("decimals", sa.Numeric, nullable=False),
sa.PrimaryKeyConstraint("token_address"), sa.PrimaryKeyConstraint("token_address"),
) )
pass
def downgrade(): def downgrade():
op.drop_table("tokens") op.drop_table("tokens")
pass