From 5847fcd8742bef31eed727aaec02c1ac833345a4 Mon Sep 17 00:00:00 2001 From: "A.L" Date: Thu, 28 Mar 2024 09:11:51 +0800 Subject: [PATCH] lint: forge fmt --- src/ReservoirPriceOracle.sol | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ReservoirPriceOracle.sol b/src/ReservoirPriceOracle.sol index 779814e..dbb843d 100644 --- a/src/ReservoirPriceOracle.sol +++ b/src/ReservoirPriceOracle.sol @@ -1,7 +1,13 @@ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; -import { IReservoirPriceOracle, OracleAverageQuery, OracleLatestQuery, OracleAccumulatorQuery, Variable } from "src/interfaces/IReservoirPriceOracle.sol"; +import { + IReservoirPriceOracle, + OracleAverageQuery, + OracleLatestQuery, + OracleAccumulatorQuery, + Variable +} from "src/interfaces/IReservoirPriceOracle.sol"; contract ReservoirPriceOracle is IReservoirPriceOracle { function getTimeWeightedAverage(OracleAverageQuery[] memory aQueries)