From 484965f0b485ce54965b0cbaf6b92b1d3c8c449e Mon Sep 17 00:00:00 2001 From: Evan Hubinger Date: Sun, 5 Nov 2023 01:26:18 -0700 Subject: [PATCH] Fix syntax --- coconut/compiler/header.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coconut/compiler/header.py b/coconut/compiler/header.py index 590f21498..a81a37f10 100644 --- a/coconut/compiler/header.py +++ b/coconut/compiler/header.py @@ -218,7 +218,7 @@ def base_async_def( no_async_def, needs_vars={}, decorator=None, - **kwargs, + **kwargs # no comma; breaks on <=3.5 ): """Build up a universal async function definition.""" target_info = get_target_info(target)