Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 committed Jan 28, 2025
1 parent 10b41c8 commit a242b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/forms/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def export(*, db_session: Session, ids: List[int]) -> List[str]:
# get the subset of forms that have this project id
project_forms = [form for form in forms if form.project_id == project_id]

# for each form, get the incident
# for each form, create a document from the template and update it with the form data
for form in project_forms:
export_document_name = f"{form.incident.name}-{form.form_type.name}-{form.id}"
export_document = storage_plugin.instance.copy_file(
Expand Down

0 comments on commit a242b4d

Please sign in to comment.