diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2016-11-01 00:37:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-01 00:37:24 +0100 |
commit | 7e3aa4bd5e500d35401f5f2b15f1da65af12b26d (patch) | |
tree | 2d074bb474b4b093c849ad2f6317dcc4ae5784f5 /modules/mpc/config.py | |
parent | 681575fa7123592897090c6cce44402c4e45baeb (diff) | |
parent | f34151ff0f91e8f0df8eaf829334b2205eb7da3c (diff) |
Merge pull request #6985 from akien-mga/python-pep8
Apply PEP8 to all python files using autopep8
Diffstat (limited to 'modules/mpc/config.py')
-rw-r--r-- | modules/mpc/config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/mpc/config.py b/modules/mpc/config.py index 368e97e152..fb920482f5 100644 --- a/modules/mpc/config.py +++ b/modules/mpc/config.py @@ -1,6 +1,7 @@ def can_build(platform): - return True + return True + def configure(env): - pass + pass |