Stratoscale / osmosis

Osmosis replaces rsync, where the backend is a git-like object store. Its used for storing build products (and rootfses)
Apache License 2.0
7 stars 16 forks source link

Fix code convention check #15

Open levioctl opened 4 years ago

levioctl commented 4 years ago

There are 2 issues with the code convention check ('make check_convention') that runs as part of the build:

  1. The 'pep8' CLI tool is deprecated, and 'pycodestyle' should be used instead.
  2. There are some PEP8 errors.

This commit changes the Makefile to use 'pycodestyle' instead of 'pep8', and fixes the remaining pep8 errors.