cools commited on
Commit
302c88e
·
1 Parent(s): b3602cf

Update Tagger.py

Browse files
Files changed (1) hide show
  1. Tagger.py +3 -3
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
- 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
 
 
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