Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Plugins can also run methods on a schedule. This allows a plugin to poll for upd
For example, this will print "hello world" every 10 seconds. You can output multiple messages to the same or different channels by passing multiple pairs of `[Channel, Message]` combos.

```python
from core import Plugin, Job
from rtmbot.core import Plugin, Job


class myJob(Job):
Expand All @@ -190,7 +190,7 @@ For example, this will print "hello world" every 10 seconds. You can output mult
class myPlugin(Plugin):

def register_jobs(self):
job = myJob(10, debug=True)
job = myJob(10)
self.jobs.append(job)
```
#### Plugin misc
Expand Down