Skip to content

Commit fe56502

Browse files
committed
rename macros
1 parent 83b3319 commit fe56502

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/src/functions.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use std::sync::Arc;
2525

2626
/// Expression representing a column on the existing plan.
2727
#[pyfunction]
28-
#[pyo3(text_signature = "(name)")]
28+
#[text_signature = "(name)"]
2929
fn col(name: &str) -> expression::Expression {
3030
expression::Expression {
3131
expr: logical_plan::col(name),
@@ -34,7 +34,7 @@ fn col(name: &str) -> expression::Expression {
3434

3535
/// Expression representing a constant value
3636
#[pyfunction]
37-
#[pyo3(text_signature = "(value)")]
37+
#[text_signature = "(value)"]
3838
fn lit(value: i32) -> expression::Expression {
3939
expression::Expression {
4040
expr: logical_plan::lit(value),

0 commit comments

Comments
 (0)