Fix indentation on #if macros

This commit is contained in:
2024-12-01 19:28:14 +01:00
parent 44251a85a6
commit 5cd4d9189b
2 changed files with 6 additions and 6 deletions

View File

@@ -51,11 +51,11 @@ class CoinbasePriceFetcher : PriceFetcher {
return nil
}
#if !SKIP
#if !SKIP
return Decimal(string: coinbasePrice.amount)
#else
#else
return Decimal(coinbasePrice.amount)
#endif
#endif
} catch {
return nil
}