Skip to content
Snippets Groups Projects
Commit d80b89a1 authored by Edward Fauchon-Jones's avatar Edward Fauchon-Jones
Browse files

Fix unicode char copy anomaly in format 3 names

parent 0ab15c05
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ class ROMSplineSpec(Spec):
if value is not None:
if isinstance(value, self.dtype):
s1 = set(componenets)
s1 = set(self.components)
s2 = set(value.keys())
diff = s1.symmetric_difference(s2)
if len(diff) == 0:
......@@ -500,35 +500,35 @@ class RemnantMassVsTime(ROMSplineSpec):
class RemnantSpinxVsTime(ROMSplineSpec):
"""Specification for the `remnant-spinx-vs-time` field"""
name = 'remnant-spinx-vs-time'
name = 'remnant-spinx-vs-time'
components = ['t_horizon', 'chix']
class RemnantSpinyVsTime(ROMSplineSpec):
"""Specification for the `remnant-spiny-vs-time` field"""
name = 'remnant-spiny-vs-time'
name = 'remnant-spiny-vs-time'
components = ['t_horizon', 'chiy']
class RemnantSpinzVsTime(ROMSplineSpec):
"""Specification for the `remnant-spinz-vs-time` field"""
name = 'remnant-spinz-vs-time'
name = 'remnant-spinz-vs-time'
components = ['t_horizon', 'chiz']
class RemnantPositionxVsTime(ROMSplineSpec):
"""Specification for the `remnant-positionx-vs-time` field"""
name = 'remnant-positionx-vs-time'
name = 'remnant-positionx-vs-time'
components = ['t_horizon', 'cx']
class RemnantPositionyVsTime(ROMSplineSpec):
"""Specification for the `remnant-positiony-vs-time` field"""
name = 'remnant-positiony-vs-time'
name = 'remnant-positiony-vs-time'
components = ['t_horizon', 'cy']
class RemnantPositionzVsTime(ROMSplineSpec):
"""Specification for the `remnant-positionz-vs-time` field"""
name = 'remnant-positionz-vs-time'
name = 'remnant-positionz-vs-time'
components = ['t_horizon', 'cz']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment