From 4dfce41f644d1aa1928b384c2b509e1aa3baddac Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Wed, 2 Oct 2024 05:47:38 -0700 Subject: [PATCH] Satisfy black. --- tests/test_pytype.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_pytype.py b/tests/test_pytype.py index 6c38b8f6..1b525d9f 100644 --- a/tests/test_pytype.py +++ b/tests/test_pytype.py @@ -1,9 +1,12 @@ import subprocess from subprocess import PIPE + def test_pytype(): result = subprocess.run( - ['pytype', 'vulture/core.py', '--disable=attribute-error'], - stdout=PIPE, stderr=PIPE, universal_newlines=True + ["pytype", "vulture/core.py", "--disable=attribute-error"], + stdout=PIPE, + stderr=PIPE, + universal_newlines=True, ) - assert result.stdout.strip().endswith('Success: no errors found') \ No newline at end of file + assert result.stdout.strip().endswith("Success: no errors found")