Fix bug in contract registry github url.

pull/3275/head
derekpierre 2023-10-06 08:38:00 -04:00
parent c93fc2884f
commit e1564c741a
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class GithubRegistrySource(RegistrySource):
def get_publication_endpoint(self) -> str:
"""Get the GitHub endpoint for the registry publication."""
url = f"{self._BASE_URL}/development/nucypher/blockchain/eth/contract_registry/{self.registry_name}/"
url = f"{self._BASE_URL}/development/nucypher/blockchain/eth/contract_registry/{self.registry_name}"
return url
def decode(self, response: Response, endpoint: str) -> RegistryData: