Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Sep 30, 2024
1 parent 376ebaf commit 4a022c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class FlowApiPriceFetcher(
}
}

fun getMarkerNavByPriceDenoms(fromDate: DateTime?, limit: Int): List<NavEvent>{
fun getMarkerNavByPriceDenoms(fromDate: DateTime?, limit: Int): List<NavEvent> {
return flowApiGrpcClient.getMarkerNavByPriceDenoms(denom, pricingDenoms, fromDate, limit)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ package io.provenance.explorer.service.pricing.fetchers
import io.provenance.explorer.domain.models.OsmosisHistoricalPrice

Check failure on line 3 in service/src/test/kotlin/io/provenance/explorer/service/pricing/fetchers/OsmosisPriceFetcherTest.kt

View workflow job for this annotation

GitHub Actions / ktlint

Imports must be ordered in lexicographic order without any empty lines in-between with "java", "javax", "kotlin" and aliases in the end
import org.joda.time.DateTime
import org.joda.time.DateTimeZone
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
import kotlinx.coroutines.runBlocking
import org.junit.jupiter.api.Assertions.assertEquals


Check failure on line 12 in service/src/test/kotlin/io/provenance/explorer/service/pricing/fetchers/OsmosisPriceFetcherTest.kt

View workflow job for this annotation

GitHub Actions / ktlint

Needless blank line(s)
class OsmosisPriceFetcherTest {

Expand Down

0 comments on commit 4a022c1

Please sign in to comment.