Skip to content

Commit

Permalink
Remove unnecessary parens
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Sep 19, 2024
1 parent 19f36ab commit 5dda596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion euphonic/spectra.py
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@ def _type_check(spectrum):
_type_check(spectrum)
spectrum_i_raw_data = cls._get_item_raw_data(spectrum)
spectrum_i_data_units = cls._get_item_data_unit(spectrum)
assert (spectrum_i_data_units == spectrum_data_units)
assert spectrum_i_data_units == spectrum_data_units

for key, ref_bins in bins_data.items():
item_bins = getattr(spectrum, key)
Expand Down

0 comments on commit 5dda596

Please sign in to comment.