Skip to content

Commit a571283

Browse files
committed
Fix linter
1 parent 0db0f53 commit a571283

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ async def test_deploy_local_bundle_dir(event_loop):
3939
app1 = model.applications.get('grafana')
4040
app2 = model.applications.get('prometheus')
4141
with open("/tmp/output", "w") as writer:
42-
writer.write(str(bundle_path)+"\n")
43-
for (k,v) in model.applications.items():
42+
writer.write(str(bundle_path) + "\n")
43+
for (k, v) in model.applications.items():
4444
writer.write(k)
4545
assert app1 and app2
4646
await model.block_until(lambda: (len(app1.units) == 1 and

0 commit comments

Comments
 (0)