diff mbox series

[BlueZ] test/test-mesh: Fix python warning

Message ID CEE786764994BC33+20220822114212.GA5807@ixamedge-b4f804 (mailing list archive)
State New, archived
Headers show
Series [BlueZ] test/test-mesh: Fix python warning | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/checkpatch success Checkpatch PASS
tedd_an/gitlint success Gitlint PASS
tedd_an/setupell success Setup ELL PASS
tedd_an/buildprep success Build Prep PASS
tedd_an/build success Build Configuration PASS
tedd_an/makecheck success Make Check PASS
tedd_an/makecheckvalgrind success Make Check PASS
tedd_an/makedistcheck success Make Distcheck PASS
tedd_an/build_extell success Build External ELL PASS
tedd_an/build_extell_make success Build Make with External ELL PASS
tedd_an/scan_build success Pass

Commit Message

Jiaquan He Aug. 22, 2022, 11:42 a.m. UTC
This fixes inconsistent use of tabs and spaces in indentation and
removes unused import.
---
 test/test-mesh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Comments

bluez.test.bot@gmail.com Aug. 22, 2022, 1:29 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=669733

---Test result---

Test Summary:
CheckPatch                    PASS      1.04 seconds
GitLint                       PASS      0.75 seconds
Prep - Setup ELL              PASS      27.42 seconds
Build - Prep                  PASS      0.70 seconds
Build - Configure             PASS      8.71 seconds
Build - Make                  PASS      876.68 seconds
Make Check                    PASS      11.57 seconds
Make Check w/Valgrind         PASS      292.49 seconds
Make Distcheck                PASS      245.98 seconds
Build w/ext ELL - Configure   PASS      8.98 seconds
Build w/ext ELL - Make        PASS      85.72 seconds
Incremental Build w/ patches  PASS      0.00 seconds
Scan Build                    PASS      521.12 seconds



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/test/test-mesh b/test/test-mesh
index fbf2476bf..f49ddeec6 100755
--- a/test/test-mesh
+++ b/test/test-mesh
@@ -97,7 +97,6 @@  import struct
 import fcntl
 import os
 import numpy
-import random
 import dbus
 import dbus.service
 import dbus.exceptions
@@ -113,7 +112,7 @@  except ImportError:
 from dbus.mainloop.glib import DBusGMainLoop
 
 try:
-  from termcolor import colored, cprint
+  from termcolor import colored
   set_error = lambda x: colored('!' + x, 'red', attrs=['bold'])
   set_cyan = lambda x: colored(x, 'cyan', attrs=['bold'])
   set_green = lambda x: colored(x, 'green', attrs=['bold'])
@@ -771,7 +770,7 @@  class Menu():
 			return
 		if len(cmds) > 1:
 			for cmd in cmds:
-			     print(set_cyan(cmd + '?'))
+				print(set_cyan(cmd + '?'))
 			return
 
 		self.menu.get(cmds[0]).func()