From 33f779e39956d3998805871a05555cd1b9f34292 Mon Sep 17 00:00:00 2001 From: Sam Talcott Date: Tue, 30 Apr 2024 12:43:29 -0400 Subject: [PATCH] Fixed tntp_cred_list() bug --- R/tntp_cred.R | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R/tntp_cred.R b/R/tntp_cred.R index b2521fd..3e64d5d 100644 --- a/R/tntp_cred.R +++ b/R/tntp_cred.R @@ -111,4 +111,7 @@ tntp_cred_list <- function(service = NULL, keyring = NULL) { # Fix row names row.names(sorted) <- 1:nrow(sorted) + + # return sorted list + sorted }