From b7bd2ee4569cf267eee076a8b1fa898f59a32e8c Mon Sep 17 00:00:00 2001 From: Nick Gerakines <12125+ngerakines@users.noreply.github.com> Date: Thu, 19 Dec 2024 08:43:02 -0500 Subject: [PATCH] refactor: Updating variables to follow convention --- cmd/goat/blob.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/goat/blob.go b/cmd/goat/blob.go index 0a1e2ebb..619c736d 100644 --- a/cmd/goat/blob.go +++ b/cmd/goat/blob.go @@ -78,14 +78,14 @@ func runBlobExport(cctx *cli.Context) error { return err } - pds_host := cctx.String("pds-host") - if pds_host == "" { - pds_host = ident.PDSEndpoint() + pdsHost := cctx.String("pds-host") + if pdsHost == "" { + pdsHost = ident.PDSEndpoint() } // create a new API client to connect to the account's PDS xrpcc := xrpc.Client{ - Host: pds_host,, + Host: pdsHost, } if xrpcc.Host == "" { return fmt.Errorf("no PDS endpoint for identity")