Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Feb 7, 2024
1 parent 4e819c2 commit 34fe850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paramview/_watch_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 34fe850

Please sign in to comment.