From f0ed2ec525027a0a44ccaa3dd4c9080efe3f6a09 Mon Sep 17 00:00:00 2001 From: Utkarsh Ayachit Date: Thu, 16 May 2019 14:26:13 -0400 Subject: [PATCH] fix #18809: fix example CSV reader Readers should support accessing `vtkDataArraySelection` object before filename is set. Fixed that. Fixes #18809. --- Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py b/Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py index 6998b8c3ef..558967aa1c 100644 --- a/Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py +++ b/Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py @@ -149,7 +149,6 @@ class PythonCSVReader(VTKPythonAlgorithmBase): return timesteps[0] def _get_array_selection(self): - self._get_raw_data() return self._arrayselection @smproperty.stringvector(name="FileName") -- GitLab