Skip to content

Commit 8ae4223

Browse files
committed
Minor fix
1 parent 39529ad commit 8ae4223

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

BlynkLib.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python3
2-
31
# The MIT License (MIT)
42
#
53
# Copyright (c) 2015 Volodymyr Shymanskyy
@@ -147,7 +145,7 @@ def _handle_hw(self, data):
147145
cmd = params.pop(0)
148146
if cmd == 'pm':
149147
pass
150-
elif cmd == 'dr' || cmd == 'dw' || cmd == 'ar' || cmd == 'aw':
148+
elif cmd == 'dr' or cmd == 'dw' or cmd == 'ar' or cmd == 'aw':
151149
print("Warning: Digital/Analog pins not supported. Please use Virtual pins")
152150
pass
153151
elif cmd == 'vw':

0 commit comments

Comments
 (0)