fix: remove useless assignation in fzf

This commit is contained in:
Glenn Y. Rolland 2024-10-27 20:47:24 +01:00
parent 995ab4d496
commit 8b0d64ad86

View file

@ -28,7 +28,8 @@ module GX::Utils
exit(1)
end
result = output.to_s.strip # .split.first?
# result
output.to_s.strip
end
end
end