Skip to content

Commit

Permalink
Remove breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Jul 17, 2023
1 parent 636691b commit f4338c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion esmerald/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def parse_form_data(media_type: "EncodingType", form_data: "FormData", field: "F
json.
"""
values_dict: Dict[str, Any] = {}
breakpoint()
for key, value in form_data.multi_items():
if not isinstance(value, StarletteUploadFile):
with suppress(JSONDecodeError):
Expand Down
1 change: 0 additions & 1 deletion esmerald/transformers/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,6 @@ async def get_request_data(self, request: "Request") -> Any:
if not self.form_data:
return await request.json()

breakpoint()
media_type, field = self.form_data
form_data = await request.form()
parsed_form = parse_form_data(media_type, form_data, field)
Expand Down

0 comments on commit f4338c5

Please sign in to comment.