From 72603dfdbaad5695160268cb10531a14cc37236e Mon Sep 17 00:00:00 2001 From: Liam Jarvis Date: Mon, 19 Aug 2024 18:40:46 +0900 Subject: [PATCH] fix: remove global print function call (#79) This commit removes a call to an unknown print function call --- lua/neotest-python/adapter.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/neotest-python/adapter.lua b/lua/neotest-python/adapter.lua index 7f1d20e..1d9e143 100644 --- a/lua/neotest-python/adapter.lua +++ b/lua/neotest-python/adapter.lua @@ -96,8 +96,7 @@ return function(config) local strategy_config if args.strategy == "dap" then strategy_config = - base.create_dap_config(python_command, script_path, script_args, config.dap_args) - P(config, strategy_config) + base.create_dap_config(python_command, script_path, script_args, config.dap_args) end ---@type neotest.RunSpec return {