summaryrefslogtreecommitdiff
path: root/system/gd/setup.py
diff options
context:
space:
mode:
author Zach Johnson <zachoverflow@google.com> 2020-05-18 12:52:26 -0700
committer Zach Johnson <zachoverflow@google.com> 2020-05-18 12:52:51 -0700
commit764d3b76a687a54dfdf50dfb6925a4ff2e362555 (patch)
tree28894413f273c4a17a0bc8e4de17311489f63845 /system/gd/setup.py
parent5ff3191fa8aba657bbdb1ab2cf46b36e52a518d7 (diff)
Format python files with extended line length now allowed
Bug: 156858180 Test: cert/run --host Tag: #gd-refactor Change-Id: I45ab86f366316246f14b24dd83f66684badf22e0
Diffstat (limited to 'system/gd/setup.py')
-rw-r--r--system/gd/setup.py16
1 files changed, 4 insertions, 12 deletions
diff --git a/system/gd/setup.py b/system/gd/setup.py
index 714dfa2056..e7948042b3 100644
--- a/system/gd/setup.py
+++ b/system/gd/setup.py
@@ -55,9 +55,7 @@ def set_permissions_for_host_executables(outputs):
current_mode = os.stat(file).st_mode
new_mode = current_mode | stat.S_IEXEC
os.chmod(file, new_mode)
- log.log(
- log.INFO, "Changed file mode of %s from %s to %s" %
- (file, oct(current_mode), oct(new_mode)))
+ log.log(log.INFO, "Changed file mode of %s from %s to %s" % (file, oct(current_mode), oct(new_mode)))
class InstallLocalPackagesForInstallation(install):
@@ -98,17 +96,11 @@ def main():
description="""Bluetooth Cert Tests Package""",
# Include root package so that bluetooth_packets_python3.so can be
# included as well
- packages=[''] + find_packages(exclude=[
- 'acts_framework', 'acts_framework.*', 'llvm_binutils',
- 'llvm_binutils.*'
- ]),
+ packages=[''] +
+ find_packages(exclude=['acts_framework', 'acts_framework.*', 'llvm_binutils', 'llvm_binutils.*']),
install_requires=install_requires,
package_data={
- '':
- host_executables + [
- '*.so', 'lib64/*.so', 'target/*', 'llvm_binutils/bin/*',
- 'llvm_binutils/lib64/*'
- ],
+ '': host_executables + ['*.so', 'lib64/*.so', 'target/*', 'llvm_binutils/bin/*', 'llvm_binutils/lib64/*'],
'cert': ['all_test_cases'],
},
cmdclass={