1
0
Fork 0

Improve a bit the typing, again

This commit is contained in:
totallylegit 2018-06-04 20:39:27 +02:00
parent 8143b63ee3
commit 183667a7f9
3 changed files with 6 additions and 5 deletions

View File

@ -1,12 +1,13 @@
import abc
import os
from typing import Set
class AbstractParser(abc.ABC):
meta_list = set()
mimetypes = set()
meta_list = set() # type: Set[str]
mimetypes = set() # type: Set[str]
def __init__(self, filename: str):
def __init__(self, filename: str) -> None:
self.filename = filename
fname, extension = os.path.splitext(filename)
self.output_filename = fname + '.cleaned' + extension

View File

@ -5,7 +5,7 @@ class HarmlessParser(abstract.AbstractParser):
""" This is the parser for filetypes that do not contain metadata. """
mimetypes = {'application/xml', 'text/plain'}
def __init__(self, filename: str):
def __init__(self, filename: str) -> None:
super().__init__(filename)
self.filename = filename
self.output_filename = filename

View File

@ -2,7 +2,7 @@ from . import abstract
class TorrentParser(abstract.AbstractParser):
mimetypes = {'application/x-bittorrent', }
mimetypes = {b'application/x-bittorrent', }
whitelist = {b'announce', b'announce-list', b'info'}
def get_meta(self) -> dict: