diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-13 14:30:45 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-13 14:30:45 +0300 |
| commit | fa2c9120c47ce61f61444c62fda637f3ed2678ed (patch) | |
| tree | b0b4242db2c60f3d9a9b0f094ce6f4c65739b7bc /app/PluginManager.py | |
| parent | b858cad9ad70ea6dd307559b3169730097fd6c29 (diff) | |
Remove # type: ignore comments
Diffstat (limited to 'app/PluginManager.py')
| -rw-r--r-- | app/PluginManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/PluginManager.py b/app/PluginManager.py index 03535cc..cd810b0 100644 --- a/app/PluginManager.py +++ b/app/PluginManager.py @@ -52,7 +52,7 @@ class PluginManager: if schedule_expr is not None: job: schedule.Job = eval(schedule_expr, {"schedule": schedule}) - job.do(self.run_plugin_job, id, None) # type: ignore + job.do(self.run_plugin_job, id, None) self.scheduled_plugin_ids.append(id) PluginClass: Any = self._plugins[plugin_name] |
