From fc69cc3ba3bc7cfcd2efff06c3c3a00fec7fd807 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Sun, 3 Sep 2023 07:30:17 +0300 Subject: [PATCH] walker: fix attribute path string cast --- src/mdis/walker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.30.2