venv added, updated
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from typing import Optional
|
||||
|
||||
from reactivex import Observable, abc, timer, typing
|
||||
|
||||
|
||||
def interval_(
|
||||
period: typing.RelativeTime, scheduler: Optional[abc.SchedulerBase] = None
|
||||
) -> Observable[int]:
|
||||
|
||||
return timer(period, period, scheduler)
|
||||
|
||||
|
||||
__all__ = ["interval_"]
|
||||
Reference in New Issue
Block a user