diff options
Diffstat (limited to 'Research/parse_lmt.py')
| -rwxr-xr-x | Research/parse_lmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Research/parse_lmt.py b/Research/parse_lmt.py index ff977a6..3c3239c 100755 --- a/Research/parse_lmt.py +++ b/Research/parse_lmt.py @@ -30,7 +30,7 @@ class Tuple(): v: float w: float def __str__(self) -> str: - return f'({self.x:8.5f}, {self.w:8.5f})' + return f'({self.v:8.5f}, {self.w:8.5f})' class V_Type(): X = 1 |