X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/be4506a78edb35b7bc4514949833cb86459e24c3..04e4888eb48c30d8c698f47852baef33f9819751:/examples/particulates.py?ds=sidebyside

diff --git a/examples/particulates.py b/examples/particulates.py
index 9aa9c37..04a4950 100755
--- a/examples/particulates.py
+++ b/examples/particulates.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import time
 from pms5003 import PMS5003, ReadTimeoutError
@@ -23,7 +23,6 @@ try:
         try:
             readings = pms5003.read()
             logging.info(readings)
-            time.sleep(1.0)
         except ReadTimeoutError:
             pms5003 = PMS5003()
 except KeyboardInterrupt: