Skip to content

Commit 27c26fb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 38fc270 commit 27c26fb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/preprocessing/base_kpi_inference_curator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def return_sliced_squad(self, squad_json, indices):
197197
return {}
198198

199199
pdf2pars = defaultdict(list)
200-
for (i1, i2) in indices:
200+
for i1, i2 in indices:
201201
pdf2pars[i1].append(i2)
202202

203203
data = []

src/components/preprocessing/kpi_inference_curator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ def clean(self, df):
103103
Args:
104104
df (A pandas dataframe)
105105
"""
106+
106107
# map kpi to question
107108
def map_kpi(r):
108109
try:

0 commit comments

Comments
 (0)