This commit is contained in:
Dima Gerasimov 2018-09-08 11:49:26 +03:00
parent bea84cbd33
commit 68401a530c

View file

@ -13,7 +13,7 @@ class Call(NamedTuple):
@property @property
def summary(self) -> str: 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]: def _extract_calls(fname: str) -> Iterator[Call]: