We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6f40f commit c605753Copy full SHA for c605753
pyiceberg/table/statistics.py
@@ -14,19 +14,15 @@
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
-from typing import (
18
- Dict,
19
- List,
20
- Optional,
21
-)
+from typing import Dict, List, Literal, Optional
22
23
from pydantic import Field
24
25
from pyiceberg.typedef import IcebergBaseModel
26
27
28
class BlobMetadata(IcebergBaseModel):
29
- type: Literal['apache-datasketches-theta-v1', 'deletion-vector-v1']
+ type: Literal["apache-datasketches-theta-v1", "deletion-vector-v1"]
30
snapshot_id: int = Field(alias="snapshot-id")
31
sequence_number: int = Field(alias="sequence-number")
32
fields: List[int]
0 commit comments