Skip to content

Commit

Permalink
PKONE: typo fix, v0.57.0.dev29
Browse files Browse the repository at this point in the history
bad find and replace
  • Loading branch information
toomanybrians committed Oct 20, 2023
1 parent 06a371c commit 175868b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mpf/_version.py
Expand Up @@ -10,7 +10,7 @@
"""

__version__ = '0.57.0.dev28' # Also consider whether MPF-MC pyproject.toml should be updated
__version__ = '0.57.0.dev29' # Also consider whether MPF-MC pyproject.toml should be updated
'''The full version of MPF.'''

__short_version__ = '0.57'
Expand Down
2 changes: 1 addition & 1 deletion mpf/platforms/pkone/pkone.py
Expand Up @@ -101,7 +101,7 @@ async def start(self):
self.controller_connection.send('PWS{:04d}'.format(self.config['watchdog']))

# Schedule the watchdog task to send at half the configured interval
self._update_watchdog = self.machine.clock.schedule_interval(self._watchdog_task,
self._watchdog_task = self.machine.clock.schedule_interval(self._update_watchdog,
self.config['watchdog'] / 2000)

for connection in self.serial_connections:
Expand Down

0 comments on commit 175868b

Please sign in to comment.