From 33aa44e62310a8869571faa75b522f169ead526f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 13 Jul 2023 12:55:11 +0200 Subject: [PATCH] Add-on: remove accidental debug print --- addon/flamenco/job_types.py | 1 - 1 file changed, 1 deletion(-) diff --git a/addon/flamenco/job_types.py b/addon/flamenco/job_types.py index fe34411f..6bf91777 100644 --- a/addon/flamenco/job_types.py +++ b/addon/flamenco/job_types.py @@ -83,7 +83,6 @@ def setting_should_autoeval( def setting_can_autoeval(setting: _AvailableJobSetting) -> bool: # Note that this uses the Pythonified name; that's done by the OpenAPI code generator. can: bool = setting.get("autoeval_lockable", False) - print(f"setting_can_autoeval({setting.key}: {can})") return can