Skip to content

Commit 34fe850

Browse files
committed
Fix mypy error
1 parent 4e819c2 commit 34fe850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

paramview/_watch_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def dispatch(self, event: FileSystemEvent) -> None:
3939
# SQLite "-journal" suffix. On macOS, it appears that only the journal file
4040
# triggers Watchdog on a database write.
4141
if event.src_path == f"{self._db_path}-journal":
42-
super().dispatch(event) # type: ignore
42+
super().dispatch(event)
4343

4444
def on_deleted(self, event: FileSystemEvent) -> None:
4545
# Triggers an update if the database file was deleted, or if the database

0 commit comments

Comments
 (0)