Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
import depedency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerwoud committed Mar 11, 2024
1 parent 12d0aa5 commit e1624b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/project/endpoints/projects/endpoint_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"""

from flask_restful import reqparse
import werkzeug
from werkzeug.datastructures import FileStorage

parser = reqparse.RequestParser()
parser.add_argument('title', type=str, help='Projects title', location="form")
parser.add_argument('descriptions', type=str, help='Projects description', location="form")
parser.add_argument(
'assignment_file',
type=werkzeug.datastructures.FileStorage,
type=FileStorage,
help='Projects assignment file',
location="form"
)
Expand Down

0 comments on commit e1624b1

Please sign in to comment.