1) Fixed a SyntaxWarning on line 301 (line 312 after implement PEP8) caused by the use of "is" in a literal, instead of a "==". The warning was as follows:
zydra.py:301: SyntaxWarning: "is" with a literal. Did you mean "=="?
if self.file_type is "rar":
2) The code was accommodated according to the PEP8 standard.
1) Fixed a SyntaxWarning on line 301 (line 312 after implement PEP8) caused by the use of "is" in a literal, instead of a "==". The warning was as follows:
zydra.py:301: SyntaxWarning: "is" with a literal. Did you mean "=="? if self.file_type is "rar":
2) The code was accommodated according to the PEP8 standard.