From 16c45715111a2749142871bb3b431b2fedf6ac84 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 21:30:24 +0000 Subject: [PATCH] style: format code with Black and PHP CS Fixer This commit fixes the style issues introduced in 3b80a17 according to the output from Black and PHP CS Fixer. Details: None --- pulse_xmpp_agent/agentxmpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulse_xmpp_agent/agentxmpp.py b/pulse_xmpp_agent/agentxmpp.py index 80f6d883..52a83a81 100644 --- a/pulse_xmpp_agent/agentxmpp.py +++ b/pulse_xmpp_agent/agentxmpp.py @@ -186,7 +186,7 @@ def create_config_file_atomically(file_path, config_data): config[server] = config_data[server] # Generate the configuration content as a string - with tempfile.NamedTemporaryFile(delete=False, mode='w') as temp_file: + with tempfile.NamedTemporaryFile(delete=False, mode="w") as temp_file: config.write(temp_file) temp_file.flush() temp_file_path = temp_file.name