File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _info(self):
63
63
attrs = {"pane_id" : self ._pane_id }
64
64
65
65
# from https://github.com/serkanyersen/underscore.py
66
- def by (val ):
66
+ def by (val ) -> bool :
67
67
for key in attrs .keys ():
68
68
try :
69
69
if attrs [key ] != val [key ]:
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def _info(self):
65
65
66
66
attrs = {"session_id" : str (self ._session_id )}
67
67
68
- def by (val ):
68
+ def by (val ) -> bool :
69
69
for key in attrs .keys ():
70
70
try :
71
71
if attrs [key ] != val [key ]:
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def _info(self, *args):
74
74
attrs = {"window_id" : self ._window_id }
75
75
76
76
# from https://github.com/serkanyersen/underscore.py
77
- def by (val ):
77
+ def by (val ) -> bool :
78
78
for key in attrs .keys ():
79
79
try :
80
80
if attrs [key ] != val [key ]:
You can’t perform that action at this time.
0 commit comments