Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Fix format_number d annotation (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
zero323 authored Jul 24, 2020
1 parent 759b7f6 commit 3f3deba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/3/pyspark/sql/functions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def concat(*cols: ColumnOrName) -> Column: ...
def concat_ws(sep: str, *cols: ColumnOrName) -> Column: ...
def decode(col: ColumnOrName, charset: str) -> Column: ...
def encode(col: ColumnOrName, charset: str) -> Column: ...
def format_number(col: ColumnOrName, d: str) -> Column: ...
def format_number(col: ColumnOrName, d: int) -> Column: ...
def format_string(format: str, *cols: ColumnOrName) -> Column: ...
def instr(str: ColumnOrName, substr: str) -> Column: ...
def overlay(
Expand Down

0 comments on commit 3f3deba

Please sign in to comment.