From: Dmitry Selyutin Date: Sun, 3 Sep 2023 04:30:17 +0000 (+0300) Subject: walker: fix attribute path string cast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc69cc3ba3bc7cfcd2efff06c3c3a00fec7fd807;p=mdis.git walker: fix attribute path string cast --- diff --git a/src/mdis/walker.py b/src/mdis/walker.py index 48cfe6a..894357d 100644 --- a/src/mdis/walker.py +++ b/src/mdis/walker.py @@ -36,7 +36,7 @@ class IndexPath(GenericPath): class AttributePath(GenericPath): def __str__(self): - return f".{self.path}]" + return f".{self.path}" class HashPath(GenericPath):