From: Dmitry Selyutin Date: Sun, 3 Sep 2023 04:26:15 +0000 (+0300) Subject: walker: fix index path string cast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=981edb64efec0978e2b118aac6374e6a611a9377;p=mdis.git walker: fix index path string cast --- diff --git a/src/mdis/walker.py b/src/mdis/walker.py index b98644a..48cfe6a 100644 --- a/src/mdis/walker.py +++ b/src/mdis/walker.py @@ -31,7 +31,7 @@ class GenericPath: class IndexPath(GenericPath): def __str__(self): - return f"[{self.path}]" + return f"[{self.path!r}]" class AttributePath(GenericPath):