diff --git a/calls/__init__.py b/calls/__init__.py index cd0ea67..a9cd217 100644 --- a/calls/__init__.py +++ b/calls/__init__.py @@ -13,7 +13,7 @@ class Call(NamedTuple): @property def summary(self) -> str: - return f"talked with {self.who} for {self.duration_s}" + return f"talked with {self.who} for {self.duration_s} secs" def _extract_calls(fname: str) -> Iterator[Call]: