Skip to content

Commit 6197ce7

Browse files
committed
Fix import lint error
1 parent d6d50ee commit 6197ce7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

internal/extension/smartagentextension/factory.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@ package smartagentextension
1616

1717
import (
1818
"context"
19+
"os"
20+
"path/filepath"
21+
"runtime"
22+
1923
"github.com/signalfx/signalfx-agent/pkg/core/common/constants"
2024
saconfig "github.com/signalfx/signalfx-agent/pkg/core/config"
2125
"go.opentelemetry.io/collector/component"
2226
"go.opentelemetry.io/collector/config"
2327
"go.opentelemetry.io/collector/extension/extensionhelper"
24-
"os"
25-
"path/filepath"
26-
"runtime"
2728
)
2829

2930
const (
30-
typeStr config.Type = "smartagent"
31-
defaultIntervalSeconds int = 10
31+
typeStr config.Type = "smartagent"
32+
defaultIntervalSeconds int = 10
3233
)
3334

3435
func NewFactory() component.ExtensionFactory {

0 commit comments

Comments
 (0)