From 68401a530c6f00bbf2fddd48496bab9849561e3a Mon Sep 17 00:00:00 2001 From: Dima Gerasimov Date: Sat, 8 Sep 2018 11:49:26 +0300 Subject: [PATCH] seconds --- calls/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]: