瀏覽代碼

fixed typos

Uhl, Patrick | Friedrich Lütze GmbH 7 月之前
父節點
當前提交
27c9ab30eb
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      python_driver/shellmatta_transport_serial.py

+ 2 - 2
python_driver/shellmatta_transport_serial.py

@@ -1,4 +1,4 @@
-""" Wrapper arount a shellmatta with transport layer to send commands and receive the response """
+""" Wrapper around a shellmatta with transport layer to send commands and receive the response """
 
 import time
 import serial
@@ -10,7 +10,7 @@ class ShellmattaSerial():
 
 
     def __init__(self, com_port, baudrate=115200, prompt="->", timeout=1, transport_layer_mandatory=False):
-        """ create the transport layer instance using the passed com port """
+        """ Create the transport layer instance using the passed com port """
         self.prompt = prompt
         self.com = com_port
         self.com_port = serial.Serial(com_port, baudrate=baudrate, timeout=timeout)