Skip to content

Commit

Permalink
fix: correct class imports for project schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Nov 21, 2023
1 parent ecece6a commit dab2154
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

import logging
import sys
from typing import Optional
from contextlib import asynccontextmanager
from typing import Optional

import sentry_sdk
from fastapi import FastAPI, Request
Expand Down
4 changes: 2 additions & 2 deletions src/backend/app/projects/project_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
#

import uuid
from typing import List, Optional
from typing import List, Optional, Union

from geojson_pydantic import Feature as GeojsonFeature
from pydantic import BaseModel
from pydantic import BaseModel, ConfigDict, Field

from app.db import db_models
from app.models.enums import ProjectPriority, ProjectStatus, TaskSplitType
Expand Down

0 comments on commit dab2154

Please sign in to comment.