9 lines
179 B
Python
9 lines
179 B
Python
from typing import Any
|
|
|
|
from cpl_reactive_extensions.internal.subscriber import Subscriber
|
|
|
|
|
|
class Operator:
|
|
def call(self, subscriber: Subscriber, source: Any):
|
|
pass
|