Skip to content

Commit df2d7ed

Browse files
qa
1 parent c8f1bb4 commit df2d7ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cads_broker/entry_points.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def delete_requests(
126126
days: float = 0,
127127
skip_confirmation: Annotated[bool, typer.Option("--yes", "-y")] = False,
128128
) -> None:
129-
"""Set the status of records in the system_requests table to 'dismissed' if they are in the specified status.
129+
"""Set the status of records in the system_requests table to 'dismissed'.
130130
131131
Parameters
132132
----------
@@ -148,7 +148,8 @@ def delete_requests(
148148
number_of_requests = session.execute(statement).rowcount
149149
if not skip_confirmation:
150150
if not typer.confirm(
151-
f"Setting status to 'dismissed' for {number_of_requests} {status} requests. Do you want to continue?",
151+
f"Setting status to 'dismissed' for {number_of_requests} {status} requests. "
152+
"Do you want to continue?",
152153
abort=True,
153154
default=True,
154155
):

0 commit comments

Comments
 (0)