Skip to content

Commit

Permalink
fix print format
Browse files Browse the repository at this point in the history
  • Loading branch information
YigitElma committed Aug 26, 2024
1 parent ee23dcf commit bd50111
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions desc/objectives/linear_objectives.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ class SectionRSelfConsistency(_Objective):
_linear = True
_fixed = False
_units = "(m)"
_print_value_fmt = "R cross-section self consistency error: {:10.3e} "
_print_value_fmt = "R cross-section self consistency error: "

def __init__(
self,
Expand Down Expand Up @@ -561,7 +561,7 @@ class SectionZSelfConsistency(_Objective):
_linear = True
_fixed = False
_units = "(m)"
_print_value_fmt = "Z cross-section self consistency error: {:10.3e} "
_print_value_fmt = "Z cross-section self consistency error: "

def __init__(
self,
Expand Down Expand Up @@ -662,7 +662,7 @@ class SectionLambdaSelfConsistency(_Objective):
_linear = True
_fixed = False
_units = "(dimensionless)"
_print_value_fmt = "Lambda section self consistency error: {:10.3e}"
_print_value_fmt = "Lambda section self consistency error: "

def __init__(
self,
Expand Down Expand Up @@ -1119,7 +1119,7 @@ class FixSectionR(FixParameters):
"""

_units = "(m)"
_print_value_fmt = "R cross-section error: {:10.3e} "
_print_value_fmt = "R cross-section error: "

def __init__(
self,
Expand Down Expand Up @@ -1200,7 +1200,7 @@ class FixSectionZ(FixParameters):
"""

_units = "(m)"
_print_value_fmt = "Z cross-section error: {:10.3e} "
_print_value_fmt = "Z cross-section error: "

def __init__(
self,
Expand Down Expand Up @@ -1281,7 +1281,7 @@ class FixSectionLambda(FixParameters):
"""

_units = "(m)"
_print_value_fmt = "Lambda cross-section error: {:10.3e} "
_print_value_fmt = "Lambda cross-section error: "

def __init__(
self,
Expand Down

0 comments on commit bd50111

Please sign in to comment.