Browse Source

Fix style.

Jelmer Vernooij 3 years ago
parent
commit
36b951c386
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dulwich/config.py

+ 1 - 1
dulwich/config.py

@@ -387,7 +387,7 @@ class ConfigFile(ConfigDict):
         super(ConfigFile, self).__init__(values=values, encoding=encoding)
         self.path = None
 
-    @classmethod
+    @classmethod  # noqa: C901
     def from_file(cls, f: BinaryIO) -> "ConfigFile":  # noqa: C901
         """Read configuration from a file-like object."""
         ret = cls()