add, remove now accept iterables

update README

patch bump
This commit is contained in:
onyx-and-iris
2022-10-06 18:07:34 +01:00
parent ad69d2cf14
commit 816fd76213
3 changed files with 26 additions and 5 deletions

View File

@@ -629,6 +629,20 @@ example:
vm.event.ldirty = True
vm.event.pdirty = False
```
Or add, remove a list of events.
The following methods are available:
- `add()`
- `remove()`
- `get()`
example:
```python
vm.event.remove(["pdirty", "mdirty", "midi"])
# get a list of currently subscribed
print(vm.event.get())