Skip to content

Commit b96667a

Browse files
committed
Refactor metadata and schema
1 parent c950a71 commit b96667a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pydala/metadata.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,9 @@ def _repair_file_schemas(
401401
"""
402402
# get unified schema
403403
if schema is None:
404-
schema, _ = self._get_unified_schema(
405-
ts_unit=ts_unit, tz=tz, use_large_string=use_large_string, sort=sort
406-
)
404+
schema, _ = self._get_unified_schema()
405+
# ts_unit=ts_unit, tz=tz, use_large_string=use_large_string, sort=sort
406+
# )
407407

408408
files_to_repair = [
409409
f

pydala/schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def repair_schema(
450450
ts_unit: str | None = None, # "us",
451451
tz: str | None = None,
452452
use_large_string: bool = False,
453-
sort: bool | list[str] = False,
453+
# sort: bool | list[str] = False,
454454
alter_schema: bool = True,
455455
**kwargs,
456456
):

0 commit comments

Comments
 (0)