Update Tagger.py
Browse files
Tagger.py
CHANGED
|
@@ -74,9 +74,9 @@ def get_other_justices_sentences(paras_text, ind_maj):
|
|
| 74 |
data['Concurrences'].append((s,i,counter))
|
| 75 |
if last == "D":
|
| 76 |
data['Dissents'].append((s,i,counter))
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
return data
|
| 81 |
|
| 82 |
|
|
|
|
| 74 |
data['Concurrences'].append((s,i,counter))
|
| 75 |
if last == "D":
|
| 76 |
data['Dissents'].append((s,i,counter))
|
| 77 |
+
if "took no part" in s: # This may not be triggered as often?
|
| 78 |
+
counter += 1
|
| 79 |
+
data['Recused'].append((s,i,counter))
|
| 80 |
return data
|
| 81 |
|
| 82 |
|