change: format code with black

This commit is contained in:
debugtalk
2020-05-22 15:08:45 +08:00
parent 1899c2f440
commit 579f6b41e1
2 changed files with 8 additions and 3 deletions

View File

@@ -40,4 +40,9 @@ class TestCli(unittest.TestCase):
self.assertIn(__description__, self.captured_output.getvalue().strip())
def test_debug_pytest(self):
pytest.main(["-s", "examples/postman_echo/request_methods/request_with_variables_test.py"])
pytest.main(
[
"-s",
"examples/postman_echo/request_methods/request_with_variables_test.py",
]
)