💚 Fix PEP8 warnings
All checks were successful
/ Python-PEP8 (push) Successful in 12s

This commit is contained in:
Finn Christiansen 2024-10-11 22:31:28 +02:00
parent 00b87b040e
commit c554194fb5
7 changed files with 10 additions and 18 deletions

View file

@ -1,7 +1,7 @@
"""empty message
Revision ID: 925f94e2acd6
Revises:
Revises:
Create Date: 2021-01-23 21:09:25.068512
"""
@ -19,11 +19,11 @@ depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('impulse',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('power', sa.Integer(), nullable=False),
sa.Column('created_at', sa.DateTime(), nullable=False),
sa.PrimaryKeyConstraint('id')
)
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('power', sa.Integer(), nullable=False),
sa.Column('created_at', sa.DateTime(), nullable=False),
sa.PrimaryKeyConstraint('id')
)
# ### end Alembic commands ###