Skip to content

Commit 524af1a

Browse files
authored
Merge pull request #48 from isidroamv/patch-1
Unnecessary semicolon removed
2 parents c170f1b + b5e8571 commit 524af1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/sms_handler_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main():
3434
try:
3535
modem.rxThread.join(2**31) # Specify a (huge) timeout so that it essentially blocks indefinitely, but still receives CTRL+C interrupt signal
3636
finally:
37-
modem.close();
37+
modem.close()
3838

3939
if __name__ == '__main__':
4040
main()

0 commit comments

Comments
 (0)