From a8b93f6d5b5c80480fa0f396921a923173d0af2e Mon Sep 17 00:00:00 2001 From: poma Date: Sat, 20 Mar 2021 14:38:28 +0300 Subject: [PATCH] lint --- contracts/AdminUpgradeableProxy.sol | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contracts/AdminUpgradeableProxy.sol b/contracts/AdminUpgradeableProxy.sol index 1ea2e76..8432b3e 100644 --- a/contracts/AdminUpgradeableProxy.sol +++ b/contracts/AdminUpgradeableProxy.sol @@ -10,7 +10,11 @@ contract AdminUpgradeableProxy is TransparentUpgradeableProxy { /** * @dev Initializes an upgradeable proxy backed by the implementation at `_logic`. */ - constructor(address _logic, address _admin, bytes memory _data) public payable TransparentUpgradeableProxy(_logic, _admin, _data) {} + constructor( + address _logic, + address _admin, + bytes memory _data + ) public payable TransparentUpgradeableProxy(_logic, _admin, _data) {} /** * @dev Override to allow admin access the fallback function.