Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Mar 21, 2024
1 parent ad7edce commit 5e460b0
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 @@ -90,7 +90,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 5e460b0

Please sign in to comment.