Skip to content

Commit ff1ca49

Browse files
Fix is_connected method call
Invalid syntax; miscalled the method name. Pointed out in issue: #2
1 parent 74ba5b1 commit ff1ca49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def runExample():
9898
print("\nSparkFun TCA9548A Example 1\n")
9999
test = qwiic_tca9548a.QwiicTCA9548A()
100100

101-
if test.isConnected() == False:
101+
if test.is_connected() == False:
102102
print("The Qwiic TCA9548A device isn't connected to the system. Please check your connection", \
103103
file=sys.stderr)
104104
return

0 commit comments

Comments
 (0)