We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e49b60c commit be59f3aCopy full SHA for be59f3a
1 file changed
src/featureforest/_feature_extractor_widget.py
@@ -167,11 +167,11 @@ def save_storage(self):
167
storage_name += ".hdf5"
168
# open the save dialog
169
selected_file, _filter = QFileDialog.getSaveFileName(
170
- self, "FeatureForest", storage_name, "Feature Storage(*.hdf)"
+ self, "FeatureForest", storage_name, "Feature Storage(*.hdf5)"
171
)
172
if selected_file is not None and len(selected_file) > 0:
173
- if not selected_file.endswith(".hdf"):
174
- selected_file += ".hdf"
+ if not selected_file.endswith(".hdf5"):
+ selected_file += ".hdf5"
175
self.storage_textbox.setText(selected_file)
176
self.extract_button.setEnabled(True)
177
0 commit comments