diff --git a/trombi/client.py b/trombi/client.py index 5506dcc..2d9a551 100644 --- a/trombi/client.py +++ b/trombi/client.py @@ -526,7 +526,7 @@ def __init__(self, result): self._rows = result['rows'] def __len__(self): - return self._total_rows + return len(self._rows) def __iter__(self): return iter(self._rows)