Skip to content

Commit 8b96fce

Browse files
Reformat
1 parent 362a6f1 commit 8b96fce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: boa_zksync/deployer.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ def _compile(
4343
def from_abi_dict(cls, abi, name="<anonymous contract>", filename=None):
4444
raise NotImplementedError("ZksyncDeployer does not support loading from ABI")
4545

46-
def deploy(self, *args, contract_name: Optional[str]=None, **kwargs) -> ZksyncContract:
46+
def deploy(
47+
self, *args, contract_name: Optional[str] = None, **kwargs
48+
) -> ZksyncContract:
4749
return ZksyncContract(
4850
self.zkvyper_data,
4951
contract_name or self._name,
@@ -59,7 +61,9 @@ def at(self, address: Address | str) -> ZksyncContract:
5961
"""
6062
return self.deploy(override_address=Address(address), skip_initcode=True)
6163

62-
def deploy_as_blueprint(self, contract_name: Optional[str]=None, **kwargs) -> ZksyncContract:
64+
def deploy_as_blueprint(
65+
self, contract_name: Optional[str] = None, **kwargs
66+
) -> ZksyncContract:
6367
"""
6468
In zkSync, any contract can be used as a blueprint.
6569
The only difference here is that we don't need to run the constructor.

0 commit comments

Comments
 (0)