diff --git a/my/location/google_takeout.py b/my/location/google_takeout.py index 8b24e5f..80b31cb 100644 --- a/my/location/google_takeout.py +++ b/my/location/google_takeout.py @@ -21,7 +21,7 @@ logger = LazyLogger(__name__) ) def locations() -> Iterator[Location]: for g in events(): - if isinstance(g, GoogleLocation) and not isinstance(g, Exception): + if isinstance(g, GoogleLocation): yield Location( lon=g.lng, lat=g.lat, dt=g.dt, accuracy=g.accuracy, elevation=None )