Skip to content

Commit 9ad4825

Browse files
committed
Fix
1 parent 8473ca4 commit 9ad4825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/flux/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def new(
171171

172172

173173
async def _print_apply_report(runner: FluxRunner, n: int | None):
174-
table = Table("Apply Migrations")
174+
table = Table(title="Apply Migrations")
175175
table.add_column("ID")
176176
table.add_column("Status")
177177

@@ -193,7 +193,7 @@ async def _print_apply_report(runner: FluxRunner, n: int | None):
193193

194194

195195
async def _print_rollback_report(runner: FluxRunner, n: int | None):
196-
table = Table("Rollback Migrations")
196+
table = Table(title="Rollback Migrations")
197197
table.add_column("ID")
198198
table.add_column("Status")
199199

0 commit comments

Comments
 (0)