Explorar el Código

Fix two pydoctor warnings.

Jelmer Vernooij hace 13 años
padre
commit
e154e1fbe0
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      dulwich/object_store.py
  2. 1 1
      dulwich/objects.py
  3. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/object_store.py

@@ -270,7 +270,7 @@ class PackBasedObjectStore(BaseObjectStore):
 
     def pack_loose_objects(self):
         """Pack loose objects.
-        
+
         :return: Number of objects packed
         """
         objects = set()

+ 1 - 1
dulwich/objects.py

@@ -66,7 +66,7 @@ def S_ISGITLINK(m):
     """Check if a mode indicates a submodule.
 
     :param m: Mode to check
-    :return: a `boolean`
+    :return: a ``boolean``
     """
     return (stat.S_IFMT(m) == S_IFGITLINK)
 

+ 1 - 1
dulwich/repo.py

@@ -920,7 +920,7 @@ class BaseRepo(object):
     def get_refs(self):
         """Get dictionary with all refs.
 
-        :return: A `dict` mapping ref names to SHA1s
+        :return: A ``dict`` mapping ref names to SHA1s
         """
         return self.refs.as_dict()