Skip to content

Commit 4ebc67a

Browse files
committed
Trivial whitespace change
1 parent bd9038b commit 4ebc67a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cmd2/argparse_custom.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -640,8 +640,7 @@ def register_argparse_argument_parameter(param_name: str, param_type: Optional[t
640640
getter_name = f'get_{param_name}'
641641

642642
def _action_get_custom_parameter(self: argparse.Action) -> Any:
643-
"""
644-
Get the custom attribute of an argparse Action.
643+
"""Get the custom attribute of an argparse Action.
645644
646645
This function is added by cmd2 as a method called ``get_<param_name>()`` to ``argparse.Action`` class.
647646
@@ -657,8 +656,7 @@ def _action_get_custom_parameter(self: argparse.Action) -> Any:
657656
setter_name = f'set_{param_name}'
658657

659658
def _action_set_custom_parameter(self: argparse.Action, value: Any) -> None:
660-
"""
661-
Set the custom attribute of an argparse Action.
659+
"""Set the custom attribute of an argparse Action.
662660
663661
This function is added by cmd2 as a method called ``set_<param_name>()`` to ``argparse.Action`` class.
664662

0 commit comments

Comments
 (0)