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 1c2c37e commit fa9f31bCopy full SHA for fa9f31b
src/zimscraperlib/rewriting/url_rewriting.py
@@ -82,7 +82,7 @@ def __str__(self) -> str:
82
return f"HttpUrl({self.value})"
83
84
def __repr__(self) -> str:
85
- return f"{self.__str__} - {super().__repr__()}" # pragma: no cover
+ return f"HttpUrl({self.value})" # pragma: no cover
86
87
@property
88
def value(self) -> str:
@@ -124,7 +124,7 @@ def __str__(self) -> str:
124
return f"ZimPath({self.value})"
125
126
127
+ return f"ZimPath({self.value})" # pragma: no cover
128
129
130
0 commit comments