Skip to content

Commit

Permalink
Add dot
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliamVadocz committed Feb 23, 2021
1 parent bc2f5a7 commit 6421253
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ from tmcp import TMCPMessage, ActionType

...
def get_output(self, packet: GameTickPacket) -> SimpleControllerState:
# Receive and parse all new matchcomms messages into TMCPMessage objects
# Receive and parse all new matchcomms messages into TMCPMessage objects.
new_messages: List[TMCPMessage] = self.tmcp_handler.recv()
# Handle TMCPMessages.
for message in new_messages:
Expand Down
2 changes: 1 addition & 1 deletion tmcp/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def initialize_agent(self):
```
def get_output(self, packet: GameTickPacket) -> SimpleControllerState:
# Receive and parse all new matchcomms messages into TMCPMessage objects
# Receive and parse all new matchcomms messages into TMCPMessage objects.
new_messages: List[TMCPMessage] = self.tmcp_handler.recv()
# Handle TMCPMessages.
for message in new_messages:
Expand Down

0 comments on commit 6421253

Please sign in to comment.