From 364333f1577e64c02b78b21fd21f4818ab217701 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Sun, 29 Oct 2023 15:27:52 +0000 Subject: [PATCH] Try using non-default-value keyword argument syntax for parsl_resource_specification This makes parsl_resource_specificiation mandatory rather than defaulting to {} It might be better to allow this to befault to None, so that users can still omit it if they want to not specify anything... --- parsl/benchmark/perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsl/benchmark/perf.py b/parsl/benchmark/perf.py index d92b9105ad..5344531bd6 100644 --- a/parsl/benchmark/perf.py +++ b/parsl/benchmark/perf.py @@ -22,7 +22,7 @@ def load_dfk_from_config(filename): @parsl.python_app -def app(parsl_resource_specification={}): +def app(*, parsl_resource_specification): return 7