From edfac2682464b3a2597deb6807f3bb99d55f789c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 9 Feb 2026 11:43:22 +0100 Subject: [PATCH] pySim.esim.saip: Fix docstring warnings: this fixes the following two warnings: pySim/esim/saip/__init__.py:docstring of pySim.esim.saip.FsNode.walk:1: WARNING: Inline strong start-string without end-string. [docutils] pySim/esim/saip/__init__.py:docstring of pySim.esim.saip.FsNodeDF.walk:1: WARNING: Inline strong start-string without end-string. [docutils] Change-Id: Id7debf9296923b735f76623808cee68967a1ece7 --- pySim/esim/saip/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py index 6962ee8e..a50e86f0 100644 --- a/pySim/esim/saip/__init__.py +++ b/pySim/esim/saip/__init__.py @@ -2004,7 +2004,7 @@ class FsNode: return x def walk(self, fn, **kwargs): - """call 'fn(self, **kwargs) for the File.""" + """call 'fn(self, ``**kwargs``) for the File.""" return [fn(self, **kwargs)] class FsNodeEF(FsNode): @@ -2094,7 +2094,7 @@ class FsNodeDF(FsNode): return cur def walk(self, fn, **kwargs): - """call 'fn(self, **kwargs) for the DF and recursively for all children.""" + """call 'fn(self, ``**kwargs``) for the DF and recursively for all children.""" ret = super().walk(fn, **kwargs) for c in self.children.values(): ret += c.walk(fn, **kwargs)