Skip to content

Commit 5895949

Browse files
committed
[#35] Explode on missing _frame if printing
1 parent 497f0cc commit 5895949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mappymatch/constructs/trace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __str__(self):
5050
output_lines = [
5151
"Mappymatch Trace object",
5252
f'coords: {self.coords if hasattr(self, "coords") else None}',
53-
f'frame: {self._frame if hasattr(self, "_frame") else None}',
53+
f"frame: {self._frame}",
5454
]
5555
return "\n".join(output_lines)
5656

0 commit comments

Comments
 (0)