Browse Source

Fix style.

Jelmer Vernooij 3 years ago
parent
commit
192e210c58
2 changed files with 5 additions and 9 deletions
  1. 0 4
      dulwich/config.py
  2. 5 5
      dulwich/line_ending.py

+ 0 - 4
dulwich/config.py

@@ -32,10 +32,6 @@ import warnings
 
 
 from typing import BinaryIO, Tuple, Optional
 from typing import BinaryIO, Tuple, Optional
 
 
-from collections import (
-    OrderedDict,
-)
-
 try:
 try:
     from collections.abc import (
     from collections.abc import (
         Iterable,
         Iterable,

+ 5 - 5
dulwich/line_ending.py

@@ -61,23 +61,23 @@ There is multiple variables that impact the normalization.
 First, a repository can contains a ``.gitattributes`` file (or more than one...)
 First, a repository can contains a ``.gitattributes`` file (or more than one...)
 that can further customize the operation on some file patterns, for example:
 that can further customize the operation on some file patterns, for example:
 
 
-    \*.txt text
+    \\*.txt text
 
 
 Force all ``.txt`` files to be treated as text files and to have their lines
 Force all ``.txt`` files to be treated as text files and to have their lines
 endings normalized.
 endings normalized.
 
 
-    \*.jpg -text
+    \\*.jpg -text
 
 
 Force all ``.jpg`` files to be treated as binary files and to not have their
 Force all ``.jpg`` files to be treated as binary files and to not have their
 lines endings converted.
 lines endings converted.
 
 
-    \*.vcproj text eol=crlf
+    \\*.vcproj text eol=crlf
 
 
 Force all ``.vcproj`` files to be treated as text files and to have their lines
 Force all ``.vcproj`` files to be treated as text files and to have their lines
 endings converted into ``CRLF`` in working directory no matter the native EOL of
 endings converted into ``CRLF`` in working directory no matter the native EOL of
 the platform.
 the platform.
 
 
-    \*.sh text eol=lf
+    \\*.sh text eol=lf
 
 
 Force all ``.sh`` files to be treated as text files and to have their lines
 Force all ``.sh`` files to be treated as text files and to have their lines
 endings converted into ``LF`` in working directory no matter the native EOL of
 endings converted into ``LF`` in working directory no matter the native EOL of
@@ -86,7 +86,7 @@ the platform.
 If the ``eol`` attribute is not defined, Git uses the ``core.eol`` configuration
 If the ``eol`` attribute is not defined, Git uses the ``core.eol`` configuration
 value described later.
 value described later.
 
 
-    \* text=auto
+    \\* text=auto
 
 
 Force all files to be scanned by the text file heuristic detection and to have
 Force all files to be scanned by the text file heuristic detection and to have
 their line endings normalized in case they are detected as text files.
 their line endings normalized in case they are detected as text files.