We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b3319 commit fe56502Copy full SHA for fe56502
python/src/functions.rs
@@ -25,7 +25,7 @@ use std::sync::Arc;
25
26
/// Expression representing a column on the existing plan.
27
#[pyfunction]
28
-#[pyo3(text_signature = "(name)")]
+#[text_signature = "(name)"]
29
fn col(name: &str) -> expression::Expression {
30
expression::Expression {
31
expr: logical_plan::col(name),
@@ -34,7 +34,7 @@ fn col(name: &str) -> expression::Expression {
34
35
/// Expression representing a constant value
36
37
-#[pyo3(text_signature = "(value)")]
+#[text_signature = "(value)"]
38
fn lit(value: i32) -> expression::Expression {
39
40
expr: logical_plan::lit(value),
0 commit comments