Skip to content

Commit

Permalink
Adapt example hook to spec signature
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
astrojuanlu committed May 22, 2023
1 parent aabb604 commit ac1b495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/hooks/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DataCatalogHooks:
return logging.getLogger(self.__class__.__name__)

@hook_impl
def after_catalog_created(self, catalog: DataCatalog) -> None:
def after_catalog_created(self, catalog: DataCatalog, **kwargs) -> None:
self._logger.info(catalog.list())
```

Expand Down

0 comments on commit ac1b495

Please sign in to comment.