Skip to content

Commit df63d1e

Browse files
committed
style: Formatting changes
1 parent 72c67c0 commit df63d1e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/linear_cli/cli/commands/issue.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,12 @@ async def get_issue_team_id(issue_id: str, client: Any) -> str:
329329
@click.option(
330330
"--limit", "-l", type=int, default=50, help="Maximum number of issues to show"
331331
)
332-
@click.option("--created-before", "-cb", help="Date until which to start looking for issues")
333-
@click.option("--created-after", "-ca", help="Date before which to start looking for issues")
332+
@click.option(
333+
"--created-before", "-cb", help="Date until which to start looking for issues"
334+
)
335+
@click.option(
336+
"--created-after", "-ca", help="Date after which to start looking for issues"
337+
)
334338
@click.pass_context
335339
def list(
336340
ctx: click.Context,
@@ -405,7 +409,7 @@ async def fetch_issues() -> dict[str, Any]:
405409
priority=priority_int,
406410
limit=limit,
407411
created_before=created_before,
408-
created_after=created_after
412+
created_after=created_after,
409413
)
410414
return dict(issues_result) if isinstance(issues_result, dict) else {}
411415

0 commit comments

Comments
 (0)