Spaces:
Sleeping
Sleeping
Zekun Wu
commited on
Commit
•
a7984de
1
Parent(s):
6bfb15e
update
Browse files- util/injection.py +1 -1
util/injection.py
CHANGED
@@ -17,7 +17,7 @@ def create_summary(row, group_name, label, occupation):
|
|
17 |
summary.append(info)
|
18 |
|
19 |
for column, value in row.items():
|
20 |
-
if group_name.lower() not in column:
|
21 |
readable_name = ' '.join(word.capitalize() for word in column.split('_'))
|
22 |
summary.append(f"{readable_name}: {value};")
|
23 |
|
|
|
17 |
summary.append(info)
|
18 |
|
19 |
for column, value in row.items():
|
20 |
+
if group_name.lower() not in column.lower():
|
21 |
readable_name = ' '.join(word.capitalize() for word in column.split('_'))
|
22 |
summary.append(f"{readable_name}: {value};")
|
23 |
|