Skip to content

Commit

Permalink
Fix plugin_loader refactor gone wrong (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
cydanil authored Jun 28, 2021
1 parent ab2c4cf commit a66b89d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gourmet/plugin_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self):
os.path.join(current_path, 'plugins'),
os.path.join(current_path, 'plugins', 'import_export'),
]
self.errors = set()
self.errors = dict()
self.pluggables_by_class: Dict = dict()
self.active_plugin_sets: List[str] = []
self.available_plugin_sets: Dict[str, LegacyPlugin] = self.load_legacy_plugins(self.plugin_directories) # noqa
Expand Down

0 comments on commit a66b89d

Please sign in to comment.