Quellcode durchsuchen

fix docstring syntax

Jelmer Vernooij vor 1 Monat
Ursprung
Commit
ce73257440
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -1845,7 +1845,7 @@ class MemoryRepo(BaseRepo):
     """
 
     def __init__(self) -> None:
-        "Create a new repository in memory."
+        """Create a new repository in memory."""
         from .config import ConfigFile
 
         self._reflog: list[Any] = []