Skip to content

Commit e15676c

Browse files
committed
chore" More fixes to removed comments
1 parent 7dbd360 commit e15676c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/libtmux/_internal/query_list.py

+6
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ def lookup_in(
184184
return rhs in data
185185
# TODO: Add a deep Mappingionary matcher
186186
# if isinstance(rhs, Mapping) and isinstance(data, Mapping):
187+
# return rhs.items() not in data.items()
187188
except Exception:
188189
return False
189190
return False
@@ -205,6 +206,7 @@ def lookup_nin(
205206
return rhs not in data
206207
# TODO: Add a deep Mappingionary matcher
207208
# if isinstance(rhs, Mapping) and isinstance(data, Mapping):
209+
# return rhs.items() not in data.items()
208210
except Exception:
209211
return False
210212
return False
@@ -302,6 +304,10 @@ def __eq__(
302304
self,
303305
other: object,
304306
# other: Union[
307+
# "QueryList[T]",
308+
# List[Mapping[str, str]],
309+
# List[Mapping[str, int]],
310+
# List[Mapping[str, Union[str, Mapping[str, Union[List[str], str]]]]],
305311
# ],
306312
) -> bool:
307313
data = other

0 commit comments

Comments
 (0)