Skip to content

Commit

Permalink
use default namespace in run
Browse files Browse the repository at this point in the history
  • Loading branch information
xoudini committed Oct 21, 2024
1 parent 113fb48 commit 62a2d41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/postcar/db/migrations/operations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import typing as t
from postcar.db import lookups, queries
from postcar.config import defaults


if t.TYPE_CHECKING:
Expand Down Expand Up @@ -114,7 +115,7 @@ async def migrate(
async def run(
connection: "Connection",
package: str,
namespace: str,
namespace: str = defaults.DEFAULT_NAMESPACE,
dry_run: bool = False,
) -> None:
if dry_run:
Expand Down

0 comments on commit 62a2d41

Please sign in to comment.