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()