Skip to content

Commit

Permalink
fix float64 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorris3 committed Nov 13, 2023
1 parent b4bf32a commit 3cf3493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lcviz/plugins/frequency_analysis/frequency_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def _update_periodogram(self, *args):
per = self.periodogram
if per is not None:
line = self.plot.marks['line']
line.x, line.y = getattr(per, self.xunit_selected), per.power
line.x, line.y = getattr(per, self.xunit_selected).value, per.power.value
self._update_periodogram_labels(per)
else:
self.plot.clear_all_marks()

0 comments on commit 3cf3493

Please sign in to comment.