Skip to content

Commit e39579a

Browse files
committed
Resolve review comments
1 parent ce3c119 commit e39579a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

external_samples/component.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@ def stop(self) -> None:
4545
def reset(self) -> None:
4646
pass
4747

48-
# This returns a list (can be empty, one, or multipe) of the ports this connects to
48+
# This returns a list (can be empty, one, or multiple) of the ports this connects to
4949
# of the PortType enumeration
5050
@abstractmethod
5151
def get_connection_port_type(self) -> list[PortType]:
5252
pass
5353

54-
# This is called periodically when an opmode is running
54+
# This is called periodically when an opmode is running. The component might use this
55+
# to talk to hardware and then call callbacks
5556
@abstractmethod
5657
def periodic(self) -> None:
5758
pass

0 commit comments

Comments
 (0)