From 935143b19f2df8da1ad4509ec41115de45f97d8a Mon Sep 17 00:00:00 2001 From: zachmu Date: Wed, 4 Aug 2021 22:09:40 +0000 Subject: [PATCH] [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh --- go/libraries/doltcore/env/environment.go | 2 +- go/libraries/doltcore/env/repo_state.go | 2 +- go/libraries/doltcore/sqle/dfunctions/dolt_commit.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go/libraries/doltcore/env/environment.go b/go/libraries/doltcore/env/environment.go index b135c2dfae..52754046b3 100644 --- a/go/libraries/doltcore/env/environment.go +++ b/go/libraries/doltcore/env/environment.go @@ -1071,4 +1071,4 @@ func GetGCKeepers(ctx context.Context, env *DoltEnv) ([]hash.Hash, error) { } return keepers, nil -} \ No newline at end of file +} diff --git a/go/libraries/doltcore/env/repo_state.go b/go/libraries/doltcore/env/repo_state.go index 2283b61353..44319512fd 100644 --- a/go/libraries/doltcore/env/repo_state.go +++ b/go/libraries/doltcore/env/repo_state.go @@ -205,4 +205,4 @@ func (rs *RepoState) CWBHeadSpec() *doltdb.CommitSpec { func (rs *RepoState) AddRemote(r Remote) { rs.Remotes[r.Name] = r -} \ No newline at end of file +} diff --git a/go/libraries/doltcore/sqle/dfunctions/dolt_commit.go b/go/libraries/doltcore/sqle/dfunctions/dolt_commit.go index 71b066e249..f998350eea 100644 --- a/go/libraries/doltcore/sqle/dfunctions/dolt_commit.go +++ b/go/libraries/doltcore/sqle/dfunctions/dolt_commit.go @@ -17,11 +17,11 @@ package dfunctions import ( "fmt" - "github.com/dolthub/dolt/go/libraries/doltcore/doltdb" "github.com/dolthub/go-mysql-server/sql" "github.com/dolthub/vitess/go/vt/proto/query" "github.com/dolthub/dolt/go/cmd/dolt/cli" + "github.com/dolthub/dolt/go/libraries/doltcore/doltdb" "github.com/dolthub/dolt/go/libraries/doltcore/env/actions" "github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess" )