Skip to content

Commit

Permalink
fix(prqlc-python): add missing type annotation for pl_to_prql (#4588)
Browse files Browse the repository at this point in the history
  • Loading branch information
kgutwin committed Jun 10, 2024
1 parent a91dcc0 commit 745f01b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions prqlc/bindings/prqlc-python/python/prqlc/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class CompileOptions:
def compile(prql_query: str, options: Optional[CompileOptions] = None) -> str: ...
def prql_to_pl(prql_query: str) -> str: ...
def pl_to_rq(pl_json: str) -> str: ...
def pl_to_prql(pl_json: str) -> str: ...
def rq_to_sql(rq_json: str) -> str: ...
def get_targets() -> List[str]: ...

Expand Down

0 comments on commit 745f01b

Please sign in to comment.