99#
1010# Written by SparkFun Electronics, July 2019
1111#
12- # This python library supports the SparkFun Electroncis qwiic
12+ # This python library supports the SparkFun Electronics qwiic
1313# qwiic sensor/board ecosystem
1414#
1515# More information on qwiic is at https:// www.sparkfun.com/qwiic
3737# SOFTWARE.
3838#==================================================================================
3939#
40- # This is mostly a port of existing Arduino functionaly , so pylint is sad.
40+ # This is mostly a port of existing Arduino functionality , so pylint is sad.
4141# The goal is to keep the public interface pthonic, but internal is internal
4242#
4343# pylint: disable=line-too-long, bad-whitespace, invalid-name
5959
6060import qwiic_i2c
6161
62- # Define the device name and I2C addresses. These are set in the class defintion
63- # as class variables, making them avilable without having to create a class instance.
64- # This allows higher level logic to rapidly create a index of qwiic devices at
65- # runtine
62+ # Define the device name and I2C addresses. These are set in the class definition
63+ # as class variables, making them available without having to create a class instance.
64+ # This allows higher level logic to rapidly create an index of qwiic devices at
65+ # runtime
6666#
6767# The name of this device
6868_DEFAULT_NAME = "SparkFun Qwiic Relay"
@@ -155,7 +155,7 @@ def __init__(self, address=None, i2c_driver=None):
155155
156156 def is_connected (self ):
157157 """
158- Determine if the Qwiic Relay is connected to the system..
158+ Determine if the Qwiic Relay is connected to the system.
159159
160160 :return: True if the device is connected, otherwise False.
161161 :rtype: bool
@@ -174,7 +174,7 @@ def begin(self):
174174 """
175175 Initialize the operation of the relay
176176
177- :return: Returns true of the initializtion was successful, otherwise False.
177+ :return: Returns true of the initialization was successful, otherwise False.
178178 :rtype: bool
179179
180180 """
0 commit comments