Skip to content

Commit

Permalink
typo (#71)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel King <[email protected]>
  • Loading branch information
svlandeg and dakinggg authored Mar 22, 2024
1 parent 1de5752 commit c15100c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalogue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get(self, name: str) -> Any:
current_namespace = " -> ".join(self.namespace)
available = ", ".join(sorted(self.get_all().keys())) or "none"
raise RegistryError(
f"Cant't find '{name}' in registry {current_namespace}. Available names: {available}"
f"Can't find '{name}' in registry {current_namespace}. Available names: {available}"
)
return _get(namespace)

Expand Down

0 comments on commit c15100c

Please sign in to comment.