GodsDevProject commited on
Commit
3576281
·
verified ·
1 Parent(s): df6075a

Update core/appeals.py

Browse files
Files changed (1) hide show
  1. core/appeals.py +11 -7
core/appeals.py CHANGED
@@ -1,12 +1,16 @@
1
- def draft_appeal(doc, agency, reason):
2
  return f"""
3
- FOIA APPEAL
4
 
5
- To: {agency} FOIA Office
6
- Re: Appeal concerning {doc}
7
 
8
- Grounds:
9
  {reason}
10
 
11
- This appeal is submitted pursuant to FOIA statutes.
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()