From 34fe8505d4e9efaf1d517eee1e966d83e5bf7b3a Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Wed, 7 Feb 2024 18:47:21 -0500 Subject: [PATCH] Fix mypy error --- paramview/_watch_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramview/_watch_db.py b/paramview/_watch_db.py index 91f547c..f652f5c 100644 --- a/paramview/_watch_db.py +++ b/paramview/_watch_db.py @@ -39,7 +39,7 @@ def dispatch(self, event: FileSystemEvent) -> None: # SQLite "-journal" suffix. On macOS, it appears that only the journal file # triggers Watchdog on a database write. if event.src_path == f"{self._db_path}-journal": - super().dispatch(event) # type: ignore + super().dispatch(event) def on_deleted(self, event: FileSystemEvent) -> None: # Triggers an update if the database file was deleted, or if the database