laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/pysim/+/42078?usp=email )


Change subject: pySim.esim.saip: Fix docstring warnings:
......................................................................

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
---
M pySim/esim/saip/__init__.py
1 file changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/78/42078/1

diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py
index 6962ee8..a50e86f 100644
--- a/pySim/esim/saip/__init__.py
+++ b/pySim/esim/saip/__init__.py
@@ -2004,7 +2004,7 @@
         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 @@
         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)

--
To view, visit https://gerrit.osmocom.org/c/pysim/+/42078?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings?usp=email

Gerrit-MessageType: newchange
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Id7debf9296923b735f76623808cee68967a1ece7
Gerrit-Change-Number: 42078
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <[email protected]>

Reply via email to