python: Run Black on configs/example/components-library

Change-Id: Id0c2151a624737f3e035fd3ae14602c144219675
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/49307
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
This commit is contained in:
Bobby R. Bruce
2021-08-16 17:48:09 -07:00
parent f272a112fd
commit ef441d3f41
4 changed files with 16 additions and 14 deletions

View File

@@ -77,10 +77,12 @@ motherboard.connect_things()
# Set the workload
thispath = os.path.dirname(os.path.realpath(__file__))
binary = CustomResource(os.path.join(
thispath,
"../../../tests/test-progs/hello/bin/x86/linux/hello"
))
binary = CustomResource(
os.path.join(
thispath,
"../../../tests/test-progs/hello/bin/x86/linux/hello",
)
)
motherboard.set_workload(binary)