From 1df512926887cb75bf464f1d0762faf26defb309 Mon Sep 17 00:00:00 2001 From: erinhmclark Date: Tue, 25 Feb 2025 14:08:38 +0000 Subject: [PATCH] Small typos. --- src/auto_archiver/core/base_module.py | 2 -- src/auto_archiver/core/consts.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/auto_archiver/core/base_module.py b/src/auto_archiver/core/base_module.py index 50ea3ff..2e6c4f0 100644 --- a/src/auto_archiver/core/base_module.py +++ b/src/auto_archiver/core/base_module.py @@ -50,8 +50,6 @@ class BaseModule(ABC): def config_setup(self, config: dict): - authentication = config.get('authentication', {}) - # this is important. Each instance is given its own deepcopied config, so modules cannot # change values to affect other modules config = deepcopy(config) diff --git a/src/auto_archiver/core/consts.py b/src/auto_archiver/core/consts.py index 0fb81fb..a49884f 100644 --- a/src/auto_archiver/core/consts.py +++ b/src/auto_archiver/core/consts.py @@ -14,7 +14,7 @@ DEFAULT_MANIFEST = { 'name': '', # the display name of the module 'author': 'Bellingcat', # creator of the module, leave this as Bellingcat or set your own name! 'type': [], # the type of the module, can be one or more of MODULE_TYPES - 'requires_setup': True, # whether or not this module requires additional setup such as setting API Keys or installing additional softare + 'requires_setup': True, # whether or not this module requires additional setup such as setting API Keys or installing additional software 'description': '', # a description of the module 'dependencies': {}, # external dependencies, e.g. python packages or binaries, in dictionary format 'entry_point': '', # the entry point for the module, in the format 'module_name::ClassName'. This can be left blank to use the default entry point of module_name::ModuleName