Skip to content

Commit

Permalink
[#35] Explode on missing _frame if printing
Browse files Browse the repository at this point in the history
  • Loading branch information
machallboyd committed Jun 23, 2022
1 parent 497f0cc commit 5895949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mappymatch/constructs/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __str__(self):
output_lines = [
"Mappymatch Trace object",
f'coords: {self.coords if hasattr(self, "coords") else None}',
f'frame: {self._frame if hasattr(self, "_frame") else None}',
f"frame: {self._frame}",
]
return "\n".join(output_lines)

Expand Down

0 comments on commit 5895949

Please sign in to comment.