Skip to content

Commit 06c7416

Browse files
committed
fix: type annotations
1 parent a9f6bee commit 06c7416

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

object-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "object-store-python"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55
authors = ["Robert Pack <[email protected]>"]
66
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Storage and local files."

object-store/object_store/arrow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import pyarrow as pa
24
import pyarrow.fs as fs
35

object-store/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "object-store-python"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Storage and local files."
99
requires-python = ">=3.8"
1010
readme = "README.md"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ exclude = [
5555
]
5656
ignore = ['E501']
5757
line-length = 120
58-
select = ['B', 'C', 'E', 'F', "I", "S", 'W']
58+
select = ['B', 'C4', 'E', 'F', "I", "S", 'W']
5959

6060
[tool.ruff.per-file-ignores]
6161
# allow asserts in test files (bandit)

0 commit comments

Comments
 (0)