瀏覽代碼

Fix styling errors

Corentin Hembise 4 年之前
父節點
當前提交
0f885dd491
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      dulwich/tests/test_ignore.py

+ 3 - 2
dulwich/tests/test_ignore.py

@@ -217,12 +217,13 @@ class IgnoreFilterManagerTests(TestCase):
         with open(os.path.join(repo.path, 'dir', 'blie'), 'wb') as f:
             f.write(b'IGNORED')
 
-        os.makedirs(os.path.join(repo.path, 'dir4' ,'foo'))
+        os.makedirs(os.path.join(repo.path, 'dir4', 'foo'))
         with open(os.path.join(repo.path, 'dir4', '.gitignore'), 'wb') as f:
             f.write(b'/*\n')
             f.write(b'!/foo\n')
 
-        with open(os.path.join(repo.path, 'dir4', 'foo', '.gitignore'), 'wb') as f:
+        with open(os.path.join(repo.path,
+                               'dir4', 'foo', '.gitignore'), 'wb') as f:
             f.write(b'/bar\n')
 
         with open(os.path.join(repo.path, 'dir4', 'foo', 'bar'), 'wb') as f: