Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lvcnrpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
waveforms
lvcnrpy
Commits
d80b89a1
Commit
d80b89a1
authored
8 years ago
by
Edward Fauchon-Jones
Browse files
Options
Downloads
Patches
Plain Diff
Fix unicode char copy anomaly in format 3 names
parent
0ab15c05
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lvcnrpy/format/specs.py
+7
-7
7 additions, 7 deletions
lvcnrpy/format/specs.py
with
7 additions
and
7 deletions
lvcnrpy/format/specs.py
+
7
−
7
View file @
d80b89a1
...
...
@@ -132,7 +132,7 @@ class ROMSplineSpec(Spec):
if
value
is
not
None
:
if
isinstance
(
value
,
self
.
dtype
):
s1
=
set
(
componen
e
ts
)
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
'
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment