We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028bd29 commit 9fa7befCopy full SHA for 9fa7bef
src/viur/shop/shop.py
@@ -252,11 +252,11 @@ def _add_translations(self) -> None:
252
def __repr__(self) -> str:
253
cls = type(self)
254
return (
255
- f"<{cls.__module__}.{cls.__qualname__} object"
256
- f"with moduleName={getattr(self, "moduleName", "NOT_SET")}, "
257
- f"modulePath={getattr(self, "modulePath", "NOT_SET")}, "
258
- f"render={getattr(self, "render", "NOT_SET")}"
259
- f"at {hex(id(self))}>"
+ f'<{cls.__module__}.{cls.__qualname__} object'
+ f'with moduleName={getattr(self, "moduleName", "NOT_SET")}, '
+ f'modulePath={getattr(self, "modulePath", "NOT_SET")}, '
+ f'render={getattr(self, "render", "NOT_SET")}'
+ f'at {hex(id(self))}>'
260
)
261
262
0 commit comments