Skip to content

Commit 0ac6301

Browse files
Fix linter error
1 parent 1355868 commit 0ac6301

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_package.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def test_sign_file_with_identity(monkeypatch):
6060

6161

6262
def test_run_gpg_raises_exception_if_no_gpgs(monkeypatch):
63-
replaced_check_call = pretend.raiser(package.FileNotFoundError('not found'))
63+
replaced_check_call = pretend.raiser(
64+
package.FileNotFoundError('not found')
65+
)
6466
monkeypatch.setattr(package.subprocess, 'check_call', replaced_check_call)
6567
gpg_args = ('gpg', '--detach-sign', '-a', 'pypircfile')
6668

0 commit comments

Comments
 (0)