Skip to content

Commit

Permalink
fix: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradip-p committed Aug 5, 2024
1 parent cd133d3 commit 64aa17f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/backend/app/projects/project_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ async def create_project_with_project_info(
db: Database, author_id: uuid.UUID, project_metadata: project_schemas.ProjectIn
):
"""Create a project in database."""
print(project_metadata.final_output)
_id = uuid.uuid4()
query = """
INSERT INTO projects (
Expand Down
2 changes: 1 addition & 1 deletion src/backend/app/projects/project_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
str_to_geojson,
write_wkb,
)
from pydantic.functional_validators import field_validator


class ProjectInfo(BaseModel):
"""Basic project info."""
Expand Down

0 comments on commit 64aa17f

Please sign in to comment.