Update Prettier Solidity (#3898)

This commit is contained in:
Francisco Giordano
2022-12-26 23:28:51 -03:00
parent 81dbe643a0
commit 4147005b0c
100 changed files with 15893 additions and 2740 deletions

View File

@ -28,21 +28,15 @@ contract GovernorTimelockControlMock is
GovernorVotesQuorumFraction(quorumNumerator_)
{}
function supportsInterface(bytes4 interfaceId)
public
view
override(Governor, GovernorTimelockControl)
returns (bool)
{
function supportsInterface(
bytes4 interfaceId
) public view override(Governor, GovernorTimelockControl) returns (bool) {
return super.supportsInterface(interfaceId);
}
function quorum(uint256 blockNumber)
public
view
override(IGovernor, GovernorVotesQuorumFraction)
returns (uint256)
{
function quorum(
uint256 blockNumber
) public view override(IGovernor, GovernorVotesQuorumFraction) returns (uint256) {
return super.quorum(blockNumber);
}