We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f56af commit 843b36bCopy full SHA for 843b36b
tests/unit/plugins/connection/aws_ssm/test_aws_ssm.py
@@ -1,6 +1,5 @@
1
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2
3
-import sys
4
from io import StringIO
5
from unittest.mock import MagicMock
6
from unittest.mock import patch
@@ -285,11 +284,11 @@ def test_generate_commands(self, is_windows):
285
284
conn._s3_client = mock_s3_client
286
287
test_command_generation = conn._generate_commands(
288
- "test_bucket",
289
- "test/s3/path",
290
- "test/in/path",
291
- "test/out/path",
292
- )
+ "test_bucket",
+ "test/s3/path",
+ "test/in/path",
+ "test/out/path",
+ )
293
294
# Check contents of generated command dictionaries
295
if is_windows:
0 commit comments