Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Nov 7, 2024
1 parent 4b03406 commit 6197963
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion py-polars/polars/io/csv/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ def scan_csv(
decimal_comma: bool = False,
glob: bool = True,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
retries: int = 2,
file_cache_ttl: int | None = None,
include_file_paths: str | None = None,
Expand Down
2 changes: 1 addition & 1 deletion py-polars/polars/io/ipc/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def scan_ipc(
row_index_name: str | None = None,
row_index_offset: int = 0,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
memory_map: bool = True,
retries: int = 2,
file_cache_ttl: int | None = None,
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/io/ndjson.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def read_ndjson(
row_index_offset: int = 0,
ignore_errors: bool = False,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
retries: int = 2,
file_cache_ttl: int | None = None,
include_file_paths: str | None = None,
Expand Down Expand Up @@ -206,7 +206,7 @@ def scan_ndjson(
row_index_offset: int = 0,
ignore_errors: bool = False,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
retries: int = 2,
file_cache_ttl: int | None = None,
include_file_paths: str | None = None,
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/io/parquet/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def read_parquet(
rechunk: bool = False,
low_memory: bool = False,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
retries: int = 2,
use_pyarrow: bool = False,
pyarrow_options: dict[str, Any] | None = None,
Expand Down Expand Up @@ -338,7 +338,7 @@ def scan_parquet(
low_memory: bool = False,
cache: bool = True,
storage_options: dict[str, Any] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = None,
credential_provider: CredentialProviderFunction | Literal["auto"] | None = "auto",
retries: int = 2,
include_file_paths: str | None = None,
allow_missing_columns: bool = False,
Expand Down

0 comments on commit 6197963

Please sign in to comment.