소스 검색

flake8 beautifications

Alexander 'Leo' Bergolth 8 년 전
부모
커밋
58c3e0cd48
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      borg/testsuite/archiver.py

+ 2 - 2
borg/testsuite/archiver.py

@@ -655,9 +655,9 @@ class ArchiverTestCase(ArchiverTestCaseBase):
     def test_create_without_root(self):
         """test create without a root"""
         self.cmd('init', self.repository_location)
-        args = [ 'create', self.repository_location + '::test' ]
+        args = ['create', self.repository_location + '::test']
         if self.FORK_DEFAULT:
-            output = self.cmd(*args, exit_code=2)
+            self.cmd(*args, exit_code=2)
         else:
             self.assert_raises(SystemExit, lambda: self.cmd(*args))