Skip to content

Commit

Permalink
remove any prints
Browse files Browse the repository at this point in the history
  • Loading branch information
wd60622 committed Sep 8, 2024
1 parent fec6c73 commit 63bec18
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lua/octo/pickers/telescope/provider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,6 @@ end
--
local function get_user_requester()
return function(prompt)
print("The prompt is: " .. prompt)
-- skip empty queries
if not prompt or prompt == "" or utils.is_blank(prompt) then
return {}
Expand Down Expand Up @@ -827,7 +826,6 @@ local function get_user_requester()
end

local function get_users(query_name, node_name)
print "Calling the get_users function"
local repo = utils.get_remote_name()
local owner, name = utils.split_repo(repo)
local query = graphql(query_name, owner, name, { escape = true })
Expand Down Expand Up @@ -869,8 +867,6 @@ local function create_user_finder()

local finder
local user_entry_maker = entry_maker.gen_from_user()
print "Using the configuration setting"
print(cfg.users)
if cfg.users == "search" then
finder = finders.new_dynamic {
entry_maker = user_entry_maker,
Expand Down

0 comments on commit 63bec18

Please sign in to comment.