From 7ce760fa04a299069eeb281fc5cd54defd683d69 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Sat, 23 Apr 2022 20:17:06 +0200 Subject: [PATCH] lint --- the_app/models/shakespeare.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/the_app/models/shakespeare.py b/the_app/models/shakespeare.py index 0ebe42a..3d76ff1 100644 --- a/the_app/models/shakespeare.py +++ b/the_app/models/shakespeare.py @@ -1,4 +1,6 @@ -from sqlalchemy import Column, ForeignKeyConstraint, Integer, PrimaryKeyConstraint, String, Table, Text, UniqueConstraint +from sqlalchemy import (Column, ForeignKeyConstraint, Integer, + PrimaryKeyConstraint, String, Table, Text, + UniqueConstraint) from sqlalchemy.orm import declarative_base, relationship Base = declarative_base()