Remove unnecessary "type: ignore" comments

This commit is contained in:
2023-03-18 04:21:03 +01:00
parent 09abc0c93a
commit 0de093d704
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ from functools import lru_cache
from pathlib import Path
from platformdirs import user_data_dir
from reader import Reader, make_reader # type: ignore
from reader import Reader, make_reader
data_dir: str = user_data_dir(appname="discord_rss_bot", appauthor="TheLovinator", roaming=True)
Path.mkdir(Path(data_dir), exist_ok=True)