fix infinite recursion on pydantic instantiation

This commit is contained in:
Nick Sweeting 2024-09-06 03:19:03 -07:00
parent cfe5798ade
commit ab517d9848
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions
archivebox/plugantic

View file

@ -111,7 +111,7 @@ class BasePlugin(BaseModel):
for hook in self.hooks:
hook.register(settings, parent_plugin=self)
print('√ REGISTERED PLUGIN:', self.plugin_module)
# print('√ REGISTERED PLUGIN:', self.plugin_module)
# @validate_call
# def install_binaries(self) -> Self: