Skip to content

Commit

Permalink
pylibfdt: Fix code style in setup.py
Browse files Browse the repository at this point in the history
We should follow PEP8 even for our setup() call.

Signed-off-by: Simon Glass <[email protected]>
Suggested-by: Mike Frysinger <[email protected]>
Signed-off-by: David Gibson <[email protected]>
  • Loading branch information
sjg20 authored and dgibson committed Apr 7, 2017
1 parent 1c5170d commit b04a2cf
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pylibfdt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
extra_compile_args = cflags
)

setup (name = 'libfdt',
version = version,
author = "Simon Glass <[email protected]>",
description = """Python binding for libfdt""",
ext_modules = [libfdt_module],
package_dir = {'': objdir},
py_modules = ["libfdt"],
)
setup(
name='libfdt',
version= version,
author='Simon Glass <[email protected]>',
description='Python binding for libfdt',
ext_modules=[libfdt_module],
package_dir={'': objdir},
py_modules=['libfdt'],
)

0 comments on commit b04a2cf

Please sign in to comment.