From a1e3f8ba11c73b358ca1a77412238bf8e8e50286 Mon Sep 17 00:00:00 2001 From: Nicholas Reinicke Date: Mon, 13 Jan 2025 09:45:35 -0700 Subject: [PATCH] formatting --- mappymatch/constructs/trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mappymatch/constructs/trace.py b/mappymatch/constructs/trace.py index a09d30f..f71f863 100644 --- a/mappymatch/constructs/trace.py +++ b/mappymatch/constructs/trace.py @@ -53,7 +53,7 @@ def __len__(self): def __str__(self): output_lines = [ "Mappymatch Trace object", - f'coords: {self.coords if hasattr(self, "coords") else None}', + f"coords: {self.coords if hasattr(self, 'coords') else None}", f"frame: {self._frame}", ] return "\n".join(output_lines)