small formatting changes

This commit is contained in:
Lucas
2022-05-22 16:10:09 -04:00
parent f40b0f95a7
commit 0136c1a1a4
11 changed files with 70 additions and 46 deletions
+16
View File
@@ -0,0 +1,16 @@
import time
class SerialComms(object):
def __init__(self, config):
self.config = config
def loop(self):
print("Hello")
def run(self):
while True:
self.loop()
time.sleep(.5)