Add-on: remove accidental debug print

This commit is contained in:
Sybren A. Stüvel 2023-07-13 12:55:11 +02:00
parent 3a3e664ae2
commit 33aa44e623

View File

@ -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