mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 08:03:50 +00:00
fix default value in python
This commit is contained in:
@@ -296,7 +296,7 @@ pub async fn handle_python_job(
|
||||
} else {
|
||||
format!(
|
||||
r#"args["{name}"] = kwargs.get("{name}")
|
||||
if not args["{name}"]:
|
||||
if args["{name}"] is None:
|
||||
del args["{name}"]"#
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user