remove unused parameter

This commit is contained in:
Shreyas Goenka 2025-01-21 16:30:21 +01:00
parent 8cc50c2a19
commit c0cf3f8535
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 1 additions and 4 deletions

View File

@ -12,7 +12,6 @@ import (
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"sync"
"github.com/databricks/cli/bundle/config" "github.com/databricks/cli/bundle/config"
"github.com/databricks/cli/bundle/env" "github.com/databricks/cli/bundle/env"
@ -69,9 +68,7 @@ type Bundle struct {
Metadata metadata.Metadata Metadata metadata.Metadata
// Store a pointer to the workspace client. // Store a pointer to the workspace client.
// It can be initialized on demand after loading the configuration. client *databricks.WorkspaceClient
clientOnce sync.Once
client *databricks.WorkspaceClient
// Files that are synced to the workspace.file_path // Files that are synced to the workspace.file_path
Files []fileset.File Files []fileset.File