rename collect -> filter

This commit is contained in:
Jakob Ketterl
2020-03-24 22:16:11 +01:00
parent f30cf3fecd
commit 25b287344f
8 changed files with 13 additions and 13 deletions

View File

@ -44,7 +44,7 @@ class PropertyManager(ABC):
def keys(self):
pass
def collect(self, *props):
def filter(self, *props):
return PropertyFilter(self, *props)
def wire(self, callback):