Dapbler / cbr2cbz

Python script that converts compressed CBR and CBZ comic archives to stored CBZ. Many options.
GNU General Public License v3.0
26 stars 5 forks source link

Use PEP8 Style #11

Open Dapbler opened 6 years ago

Dapbler commented 6 years ago

Tabs are convenient when it's just me, but not Python style. Read PEP 8.

  1. Convert tabs to spaces
  2. Line breaks at 79 (maybe not for some help?)
  3. Consistent use of braces
  4. Trailing whitespace is bad
  5. Consider refactoring variable/function names

Note: argparse option "help" descriptions being over 80 characters is probably a bad sign...

Dapbler commented 3 years ago

I think formatting is done, but use of globals and function names likely needs work.