Skip to content

Commit 85d2541

Browse files
committed
Fix: Useless comma could be removed
1 parent 2874be9 commit 85d2541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/supervisor/views/test_run_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def test_run_code_from_invalid_path(aiohttp_client):
2121

2222
app = web.Application()
2323

24-
app.router.add_route("*", "/vm/{ref}{suffix:.*}", run_code_from_path),
24+
app.router.add_route("*", "/vm/{ref}{suffix:.*}", run_code_from_path)
2525
client = await aiohttp_client(app)
2626

2727
invalid_hash_request: web.Request = make_mocked_request(

0 commit comments

Comments
 (0)