Skip to content

Commit 843b36b

Browse files
committed
Fix indentation
1 parent 28f56af commit 843b36b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Diff for: tests/unit/plugins/connection/aws_ssm/test_aws_ssm.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
22

3-
import sys
43
from io import StringIO
54
from unittest.mock import MagicMock
65
from unittest.mock import patch
@@ -285,11 +284,11 @@ def test_generate_commands(self, is_windows):
285284
conn._s3_client = mock_s3_client
286285

287286
test_command_generation = conn._generate_commands(
288-
"test_bucket",
289-
"test/s3/path",
290-
"test/in/path",
291-
"test/out/path",
292-
)
287+
"test_bucket",
288+
"test/s3/path",
289+
"test/in/path",
290+
"test/out/path",
291+
)
293292

294293
# Check contents of generated command dictionaries
295294
if is_windows:

0 commit comments

Comments
 (0)