Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions diffly/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import datetime as dt
import warnings
from pathlib import Path
from typing import Annotated

import polars as pl
Expand All @@ -24,8 +23,8 @@

@app.command()
def main(
left: Annotated[Path, typer.Argument(help="Path to the left parquet file.")],
right: Annotated[Path, typer.Argument(help="Path to the right parquet file.")],
left: Annotated[str, typer.Argument(help="Path or URL to the left parquet file.")],
right: Annotated[str, typer.Argument(help="Path or URL to the right parquet file.")],
primary_key: Annotated[
list[str],
typer.Option(
Expand Down
Loading
Loading