Update core/appeals.py
Browse files- core/appeals.py +11 -7
core/appeals.py
CHANGED
|
@@ -1,12 +1,16 @@
|
|
| 1 |
-
def draft_appeal(
|
| 2 |
return f"""
|
| 3 |
-
FOIA
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
|
| 8 |
-
|
| 9 |
{reason}
|
| 10 |
|
| 11 |
-
This appeal
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def draft_appeal(document: str, agency: str, reason: str) -> str:
|
| 2 |
return f"""
|
| 3 |
+
FOIA Appeal – Request for Reconsideration
|
| 4 |
|
| 5 |
+
Agency: {agency}
|
| 6 |
+
Document: {document}
|
| 7 |
|
| 8 |
+
Basis for Appeal:
|
| 9 |
{reason}
|
| 10 |
|
| 11 |
+
This appeal concerns a publicly released document and requests
|
| 12 |
+
review of redactions or withholdings under applicable FOIA exemptions.
|
| 13 |
+
|
| 14 |
+
Sincerely,
|
| 15 |
+
[Requestor]
|
| 16 |
+
""".strip()
|