Remove xy_run() last parameter

This commit is contained in:
Aoran Zeng
2024-12-14 09:14:11 +08:00
parent 252a64924f
commit be3982bbff
10 changed files with 25 additions and 18 deletions

View File

@@ -12,7 +12,7 @@
char *
pl_python_find_rye_config ()
{
char *buf = xy_run ("rye config --show-path", 0, NULL);
char *buf = xy_run ("rye config --show-path", 0);
char *rye_config = xy_normalize_path (xy_str_strip (buf));
return rye_config;