Skip to content

Commit

Permalink
FIX: Add covariate type parameter to python wrapper for std csv (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickEdwards7502 committed Sep 19, 2024
1 parent 1529bd8 commit 12d6137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/varspark/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def import_covariates(self, cov_file_path, cov_types=None, transposed=False):
if transposed:
_jcs = self._jvsc.importTransposedCSV(cov_file_path, cov_types_list)
else:
_jcs = self._jvsc.importStdCSV(cov_file_path)
_jcs = self._jvsc.importStdCSV(cov_file_path, cov_types_list)
return FeatureSource(
self._jvm,
self._vs_api,
Expand Down

0 comments on commit 12d6137

Please sign in to comment.