aboutsummaryrefslogtreecommitdiff
path: root/migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2022-03-30 14:34:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2022-03-30 14:34:00 +0200
commitc7f7e76721acda1483c0f29d6718d638ce0d8875 (patch)
tree864f06207b349a09c23ebd6bde74dfdd0acd7660 /migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py
parentchg: [dependecies] Updated SQLAlchemy. (diff)
downloadnewspipe-c7f7e76721acda1483c0f29d6718d638ce0d8875.tar.gz
newspipe-c7f7e76721acda1483c0f29d6718d638ce0d8875.tar.bz2
newspipe-c7f7e76721acda1483c0f29d6718d638ce0d8875.zip
chg: [style] improved style. !minor
Diffstat (limited to 'migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py')
-rw-r--r--migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py b/migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py
index e07ff6d7..bd7ccf58 100644
--- a/migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py
+++ b/migrations/versions/17dcb75f3fe_changed_the_type_of_the_column_last_.py
@@ -5,12 +5,12 @@ Revises: cde34831ea
Create Date: 2015-03-10 14:20:53.676344
"""
-
# revision identifiers, used by Alembic.
-from alembic import op
-import sqlalchemy as sa
from datetime import datetime
+import sqlalchemy as sa
+from alembic import op
+
revision = "17dcb75f3fe"
down_revision = "cde34831ea"
bgstack15