Skip to content

Commit

Permalink
Fix IRVB calculate sensitivity method
Browse files Browse the repository at this point in the history
Spectral pipelines have no display_progress option.
  • Loading branch information
jacklovell committed Mar 4, 2024
1 parent cd06ea0 commit ea1363f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cherab/tools/observers/bolometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ def calculate_sensitivity(self, voxel_collection, ray_count=None):
raise TypeError("voxel_collection must be of type VoxelCollection")

pipeline_class = self._SPECTRAL_PIPELINES[self._units]
pipeline = pipeline_class(display_progress=False)
pipeline = pipeline_class()

voxel_collection.set_active("all")

Expand Down

0 comments on commit ea1363f

Please sign in to comment.