Skip to content

Commit 2b619dc

Browse files
zoobaCopilot
andauthored
Update src/manage/pathutils.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 46c0854 commit 2b619dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manage/pathutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __truediv__(self, other):
9797
def __eq__(self, other):
9898
if isinstance(other, PurePath):
9999
return _eq(self._p, other._p)
100-
return _eq(self._p == str(other))
100+
return _eq(self._p, str(other))
101101

102102
def __ne__(self, other):
103103
if isinstance(other, PurePath):

0 commit comments

Comments
 (0)