From f96beee4b24ac1074304e1b2a881f8d1631f6049 Mon Sep 17 00:00:00 2001 From: emmalynf Date: Sat, 23 Mar 2024 14:21:06 -0400 Subject: [PATCH] small changes --- backend/entities/resource_entity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/entities/resource_entity.py b/backend/entities/resource_entity.py index 5216fd2..4adea78 100644 --- a/backend/entities/resource_entity.py +++ b/backend/entities/resource_entity.py @@ -1,6 +1,6 @@ """ Defines the table for storing resources """ # Import our mapped SQL types from SQLAlchemy -from sqlalchemy import Integer, String, DateTime, ARRAY +from sqlalchemy import Integer, String, DateTime # Import mapping capabilities from the SQLAlchemy ORM from sqlalchemy.orm import Mapped, mapped_column, relationship # Import the EntityBase that we are extending @@ -12,7 +12,7 @@ import enum from sqlalchemy import Enum class ProgramEnum(enum.Enum): - """Determine program for Resource """ + """ Determine program for Resource """ DOMESTIC = 'DOMESTIC' ECONOMIC = 'ECONOMIC' COMMUNITY = 'COMMUNITY'