Skip to content
Snippets Groups Projects
Verified Commit 71b1ced8 authored by georg's avatar georg
Browse files

AbstractParser: Fix typos

parent 94285960
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ assert Set # make pyflakes happy ...@@ -7,7 +7,7 @@ assert Set # make pyflakes happy
class AbstractParser(abc.ABC): class AbstractParser(abc.ABC):
""" This is the base classe of every parser. """ This is the base classe of every parser.
It might yeild `ValueError` on instanciation on invalid files. It might yield `ValueError` on instanciation on invalid files.
""" """
meta_list = set() # type: Set[str] meta_list = set() # type: Set[str]
mimetypes = set() # type: Set[str] mimetypes = set() # type: Set[str]
...@@ -30,7 +30,7 @@ class AbstractParser(abc.ABC): ...@@ -30,7 +30,7 @@ class AbstractParser(abc.ABC):
def remove_all_lightweight(self) -> bool: def remove_all_lightweight(self) -> bool:
""" This method removes _SOME_ metadata. """ This method removes _SOME_ metadata.
I might be useful to implement it for fileformats that do It might be useful to implement it for fileformats that do
not support non-destructive cleaning. not support non-destructive cleaning.
""" """
return self.remove_all() return self.remove_all()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment