Skip to content

Commit 69eb868

Browse files
Merge pull request #415 from IntelPython/linter-fixes
Flake8 fixes
2 parents 6f704ed + 8635cfc commit 69eb868

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/python/subdevices.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def subdivide_by_affinity(affinity="numa"):
6767
try:
6868
sub_devs = cpu_d.create_sub_devices(partition=affinity)
6969
print(
70-
"{} sub-devices were created with #EUs".format(
70+
"{0} sub-devices were created with respective "
71+
"#EUs being {1}".format(
7172
len(sub_devs), [d.max_compute_units for d in sub_devs]
7273
)
7374
)

0 commit comments

Comments
 (0)