Skip to content

Commit

Permalink
fix prospector error
Browse files Browse the repository at this point in the history
  • Loading branch information
gcroci2 committed Oct 24, 2023
1 parent d842fc7 commit e1265ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def test_inherit_info_pretrained_model_graphdataset(self):
for _, key in data["features_transform"].items():
if key['transform'] is None:
continue
key['transform'] = eval(key['transform'])
key['transform'] = eval(key['transform']) # pylint: disable=eval-used

dataset_test_vars = vars(dataset_test)
for param in inherited_params:
Expand Down

0 comments on commit e1265ae

Please sign in to comment.