Generalize constraints to observables #48
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ impl TryFrom<String> for SpecifiedValue {
|
||||||
|
|
||||||
fn try_from(spec: String) -> Result<Self, Self::Error> {
|
fn try_from(spec: String) -> Result<Self, Self::Error> {
|
||||||
if spec.is_empty() {
|
if spec.is_empty() {
|
||||||
Ok(SpecifiedValue { spec: spec, value: None })
|
Ok(SpecifiedValue::from_empty_spec())
|
||||||
} else {
|
} else {
|
||||||
spec.parse::<f64>().map(
|
spec.parse::<f64>().map(
|
||||||
|value| SpecifiedValue { spec: spec, value: Some(value) }
|
|value| SpecifiedValue { spec: spec, value: Some(value) }
|
||||||
|
|
Loading…
Add table
Reference in a new issue