فهرست منبع

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: