Remove unnecessary "type: ignore" comments

This commit is contained in:
Joakim Hellsén 2023-03-18 04:21:03 +01:00
commit 0de093d704
No known key found for this signature in database
GPG key ID: 6AC65837BAEBDD15
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)