Skip to content

Commit 9f86216

Browse files
Merge pull request #70 from KeithKelleher/main
fix expt file parsing
2 parents 47c23cf + 983a754 commit 9f86216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input_adapters/pounce_sheets/pounce_input_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_all(self) -> Generator[List[Union[Node, Relationship]], None, None]:
7979
for key, val in extra_columns.items():
8080
if val is None or val == '':
8181
continue
82-
setattr(expt_obj, key.replace(' ', '_'), row[val])
82+
setattr(expt_obj, key.replace(' ', '_'), val)
8383

8484

8585
yield [expt_obj, ProjectExperimentRelationship(start_node=proj_obj, end_node=expt_obj)]

0 commit comments

Comments
 (0)