From be8ecd1fb748e85a656ae89989f7cb20aad19bcc Mon Sep 17 00:00:00 2001 From: Marten Lienen Date: Sun, 26 May 2024 19:43:31 +0200 Subject: [PATCH] Remove debug output --- pyinfra/api/facts.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyinfra/api/facts.py b/pyinfra/api/facts.py index 19452d85b..38684ba53 100644 --- a/pyinfra/api/facts.py +++ b/pyinfra/api/facts.py @@ -161,7 +161,6 @@ def _handle_fact_kwargs(state, host, cls, args, kwargs): fact_kwargs = {key: value for key, value in kwargs.items() if key not in global_kwargs} if args or fact_kwargs: - print(args, fact_kwargs) # Merges args & kwargs into a single kwargs dictionary fact_kwargs = getcallargs(cls().command, *args, **fact_kwargs)