Skip to content

Commit 870e7e1

Browse files
committed
fix: E241 whitespace and add CHANGELOG entry
- Remove extra spaces after ':' in test dict literals (flake8 E241) - Add CHANGELOG.rst entry under 'in development' for #6375
1 parent aaea699 commit 870e7e1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Redis 8.6
1616

1717
Fixed
1818
~~~~~
19-
19+
* Fix ``TypeError`` when displaying help for actions whose parameters have no ``description`` key. #6375
2020

2121
Changed
2222
~~~~~~~

st2client/tests/unit/test_command_actionrun.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,10 +411,10 @@ def test_sort_parameters_mixed_position_types(self):
411411
command = ActionRunCommand(action, self, subparser, name="test")
412412

413413
parameters = {
414-
"host": {"type": "string", "position": 0},
414+
"host": {"type": "string", "position": 0},
415415
"timeout": {"type": "integer", "position": 1},
416416
"verbose": {"type": "boolean"},
417-
"output": {"type": "string"},
417+
"output": {"type": "string"},
418418
}
419419
names = ["verbose", "output", "host", "timeout"]
420420

0 commit comments

Comments
 (0)