Skip to content

Commit

Permalink
Fix linter error.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Sep 18, 2023
1 parent 65a8988 commit c49c8e5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions porter/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,14 @@ def __init__(self,
BlockchainInterfaceFactory.initialize_interface(eth_provider_uri=eth_provider_uri)

self.eth_provider_uri = eth_provider_uri
self.registry = registry or InMemoryContractRegistry.from_latest_publication(network=domain)
self.application_agent = ContractAgency.get_agent(TACoApplicationAgent, registry=self.registry, provider_uri=self.eth_provider_uri)
self.registry = registry or InMemoryContractRegistry.from_latest_publication(
network=domain
)
self.application_agent = ContractAgency.get_agent(
TACoApplicationAgent,
registry=self.registry,
provider_uri=self.eth_provider_uri,
)

super().__init__(save_metadata=True, domain=domain, node_class=node_class, *args, **kwargs)

Expand Down

0 comments on commit c49c8e5

Please sign in to comment.