hamedA2 / Zydra

MIT License
421 stars 109 forks source link

Fixed a SyntaxWarning and including PEP8 standard. #21

Closed alejandrodf95 closed 2 years ago

alejandrodf95 commented 3 years ago

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.