Skip to content

Commit

Permalink
Lint code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Witkowski committed Nov 14, 2023
1 parent de4ba13 commit 3c3eb8d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ import (
wasmclient "github.com/CosmWasm/wasmd/x/wasm/client"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
icq "github.com/cosmos/ibc-apps/modules/async-icq/v6"
icqkeeper "github.com/cosmos/ibc-apps/modules/async-icq/v6/keeper"
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"
"github.com/gorilla/mux"
"github.com/rakyll/statik/fs"
"github.com/spf13/cast"
Expand Down Expand Up @@ -105,6 +102,9 @@ import (
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
icq "github.com/cosmos/ibc-apps/modules/async-icq/v6"
icqkeeper "github.com/cosmos/ibc-apps/modules/async-icq/v6/keeper"
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"
ica "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts"
icahost "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host"
icahostkeeper "github.com/cosmos/ibc-go/v6/modules/apps/27-interchain-accounts/host/keeper"
Expand Down
3 changes: 1 addition & 2 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import (
"fmt"
"strings"

icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"

"cosmossdk.io/math"

"github.com/cosmos/cosmos-sdk/baseapp"
Expand All @@ -16,6 +14,7 @@ import (
govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
govtypesv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"
transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types"

attributekeeper "github.com/provenance-io/provenance/x/attribute/keeper"
Expand Down
3 changes: 1 addition & 2 deletions x/oracle/keeper/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ package keeper
import (
"strconv"

icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"

abci "github.com/tendermint/tendermint/abci/types"

cerrs "cosmossdk.io/errors"

sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"
clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"

Expand Down
3 changes: 1 addition & 2 deletions x/oracle/module/module_ibc.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package oracle

import (
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"

cerrs "cosmossdk.io/errors"

sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
icqtypes "github.com/cosmos/ibc-apps/modules/async-icq/v6/types"
channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types"
host "github.com/cosmos/ibc-go/v6/modules/core/24-host"
Expand Down

0 comments on commit 3c3eb8d

Please sign in to comment.