-
Notifications
You must be signed in to change notification settings - Fork 1
/
arguments_courts.py
16 lines (16 loc) · 1.12 KB
/
arguments_courts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
courts_list = [
["First Circuit", "1st Cir.", "U.S. Court of Appeals for the First Circuit"],
["Second Circuit", "2d Cir.", "U.S. Court of Appeals for the Second Circuit"],
["Third Circuit", "3d Cir.", "U.S. Court of Appeals for the Third Circuit"],
["Fourth Circuit", "4th Cir.", "U.S. Court of Appeals for the Fourth Circuit"],
["Fifth Circuit", "5th Cir.", "U.S. Court of Appeals for the Fifth Circuit"],
["Sixth Circuit", "6th Cir.", "U.S. Court of Appeals for the Sixth Circuit"],
["Seventh Circuit", "7th Cir.", "U.S. Court of Appeals for the Seventh Circuit"],
["Eighth Circuit", "8th Cir.", "U.S. Court of Appeals for the Eighth Circuit"],
["Ninth Circuit", "9th Cir.", "U.S. Court of Appeals for the Ninth Circuit"],
["Tenth Circuit", "10th Cir.", "U.S. Court of Appeals for the Tenth Circuit"],
["Eleventh Circuit", "11th Cir.", "U.S. Court of Appeals for the Eleventh Circuit"],
["D.C. Circuit", "D.C. Cir.", "U.S. Court of Appeals for the District of Columbia Circuit"],
["Federal Circuit", "Fed. Cir.", "U.S. Court of Appeals for the Federal Circuit"],
["Supreme Court", "Sup. Ct.", "U.S. Supreme Court"]
]