We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c72d9 commit 5ea176fCopy full SHA for 5ea176f
sublist/sublist.py
@@ -38,7 +38,7 @@ def sublist(list_one: list, list_two: list) -> str:
38
len2: int = len(list_two)
39
40
if len1 == len2:
41
- if list_one is list_two or list_one == list_two:
+ if list_one == list_two:
42
return EQUAL
43
return UNEQUAL
44
0 commit comments