We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417a519 commit 6bd143aCopy full SHA for 6bd143a
python/selfie-lib/selfie_lib/Lens.py
@@ -7,7 +7,7 @@
7
T = TypeVar("T")
8
9
10
-class Lens(Protocol[Snapshot]):
+class Lens(Protocol):
11
def __call__(self, snapshot: Snapshot) -> Snapshot:
12
raise NotImplementedError
13
python/selfie-lib/selfie_lib/__init__.py
@@ -5,6 +5,9 @@
5
from .CacheSelfie import cache_selfie as cache_selfie
6
from .CommentTracker import CommentTracker as CommentTracker
from .FS import FS as FS
+from .Lens import Camera as Camera
+from .Lens import CompoundLens as CompoundLens
+from .Lens import Lens as Lens
from .LineReader import LineReader as LineReader
from .Literals import LiteralValue as LiteralValue
from .ParseException import ParseException as ParseException
0 commit comments