[misc] Fixes formatting.

This commit is contained in:
Romain Dorgueil
2017-07-05 13:09:46 +02:00
parent 8de6f50523
commit 4a2c7280d6
9 changed files with 31 additions and 38 deletions

View File

@ -99,9 +99,7 @@ def test_exclusive():
def test_requires():
vcr = VCR()
services = Container(
output=vcr.append
)
services = Container(output=vcr.append)
@requires('output')
def append(out, x):
@ -110,7 +108,3 @@ def test_requires():
svcargs = services.args_for(append)
assert len(svcargs) == 1
assert svcargs[0] == vcr.append