Skip to content

Commit 7ba4e11

Browse files
authored
Fix syntax error in _validate_canvas_connection method
1 parent 4004fe5 commit 7ba4e11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/canvas_student/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class CanvasConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
88

99
VERSION = 1
1010

11-
async def _validate_canvas_connection(self, base_url, token)
11+
async def _validate_canvas_connection(self, base_url, token):
1212
try:
1313
async with aiohttp.ClientSession() as session:
1414
headers = {"Authorization": f"Bearer {token}"}

0 commit comments

Comments
 (0)