From f71235c9d93f41a317edfff4d729618b459e3e09 Mon Sep 17 00:00:00 2001 From: Gayatri Kate Date: Fri, 17 Jan 2025 20:23:04 +0530 Subject: [PATCH] Added docstrings to pyiceberg/table/inspect.py for better documentation --- pyiceberg/table/inspect.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyiceberg/table/inspect.py b/pyiceberg/table/inspect.py index 5a2dba42ac..ee9f50aca5 100644 --- a/pyiceberg/table/inspect.py +++ b/pyiceberg/table/inspect.py @@ -829,3 +829,4 @@ def all_manifests(self) -> "pa.Table": lambda args: self._generate_manifests_table(*args), [(snapshot, True) for snapshot in snapshots] ) return pa.concat_tables(manifests_by_snapshots) +