From 38465636e72d545eb4dd96f1788c744bcc393880 Mon Sep 17 00:00:00 2001 From: Vincent Chau <99756290+vincentwschau@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:04:05 -0500 Subject: [PATCH] More lint fix. --- .../roundtable/src/tasks/update-research-environment.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indexer/services/roundtable/src/tasks/update-research-environment.ts b/indexer/services/roundtable/src/tasks/update-research-environment.ts index ce807a1858..24427bfd8c 100644 --- a/indexer/services/roundtable/src/tasks/update-research-environment.ts +++ b/indexer/services/roundtable/src/tasks/update-research-environment.ts @@ -18,6 +18,8 @@ import { startAthenaQuery, } from '../helpers/aws'; import { AthenaTableDDLQueries } from '../helpers/types'; +import * as athenaAffiliateInfo from '../lib/athena-ddl-tables/affiliate_info'; +import * as athenaAffiliateReferredUsers from '../lib/athena-ddl-tables/affiliate_referred_users'; import * as athenaAssetPositions from '../lib/athena-ddl-tables/asset_positions'; import * as athenaAssets from '../lib/athena-ddl-tables/assets'; import * as athenaBlocks from '../lib/athena-ddl-tables/blocks'; @@ -36,10 +38,8 @@ import * as athenaTendermintEvents from '../lib/athena-ddl-tables/tendermint_eve import * as athenaTradingRewardAggregations from '../lib/athena-ddl-tables/trading_reward_aggregations'; import * as athenaTradingRewards from '../lib/athena-ddl-tables/trading_rewards'; import * as athenaTransfers from '../lib/athena-ddl-tables/transfers'; -import * as athenaWallets from '../lib/athena-ddl-tables/wallets'; -import * as athenaAffiliateInfo from '../lib/athena-ddl-tables/affiliate_info'; -import * as athenaAffiliateReferredUsers from '../lib/athena-ddl-tables/affiliate_referred_users'; import * as athenaVaults from '../lib/athena-ddl-tables/vaults'; +import * as athenaWallets from '../lib/athena-ddl-tables/wallets'; export const tablesToAddToAthena: { [table: string]: AthenaTableDDLQueries } = { asset_positions: athenaAssetPositions,