Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arturrez committed Jun 27, 2024
1 parent d18e86a commit 0dd22db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/aws.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (C) 2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.

package main
package examples

import (
"context"
Expand Down Expand Up @@ -29,7 +29,7 @@ func createSecurityGroup(ctx context.Context, awsProfile string, awsRegion strin
if err != nil {
return "", err
}
//detect user IP address
// detect user IP address
userIPAddress, err := utils.GetUserIPAddress()
if err != nil {
return "", err
Expand Down
1 change: 0 additions & 1 deletion node/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ type NodeParams struct {
func CreateNodes(
ctx context.Context,
nodeParams *NodeParams,

) ([]Node, error) {
nodes, err := createCloudInstances(ctx, *nodeParams.CloudParams, nodeParams.Count, nodeParams.UseStaticIP, nodeParams.SSHPrivateKey)
if err != nil {
Expand Down

0 comments on commit 0dd22db

Please sign in to comment.