Fix errors in api doc creation
[pyi2ncommon] / src / cnfvar / string.py
index 0aec596..773f8a2 100644 (file)
@@ -677,12 +677,12 @@ def cnf_root(root):
     :rtype: [dict]
 
     Output varies depending on a few conditions:
-    - If `root` is a list, return it right away
-    - If `root` is a dict corresponding to a valid CNF value, return it wrapped
-      in a list
-    - If `root` is a dict with a `cnf` key containg a list (as the JSON
-      returned by `get_cnf -j`), return the value
-    - Otherwise, raise an error
+        - If `root` is a list, return it right away
+        - If `root` is a dict corresponding to a valid CNF value, return it wrapped
+          in a list
+        - If `root` is a dict with a `cnf` key containg a list (as the JSON
+          returned by `get_cnf -j`), return the value
+        - Otherwise, raise an error
     """
     if isinstance(root, list):
         return root