Remove unused method from ape utils.

pull/3230/head
derekpierre 2023-09-13 20:37:39 -04:00
parent 7dc8aa3aad
commit 59da3dffcf
1 changed files with 0 additions and 6 deletions

View File

@ -1,4 +1,3 @@
from pathlib import Path
from typing import List
from ape.contracts.base import ContractInstance
@ -7,11 +6,6 @@ from eth_utils import to_checksum_address
from nucypher.blockchain.eth.registry import InMemoryContractRegistry
def get_ape_project_build_path(project) -> Path:
build_path = Path(project.path) / '.build'
return build_path
def registry_from_ape_deployments(
deployments: List[ContractInstance],
) -> InMemoryContractRegistry: